ptools-v2/src/TransformGridItem/style.module.scss

57 lines
888 B
SCSS
Raw Normal View History

2024-10-26 17:57:34 +09:00
.item {
background-color: #1e1e1e;
border-radius: 6px;
display: flex;
padding: 10px;
flex-direction: column;
2024-10-29 21:04:49 +09:00
2024-10-26 17:57:34 +09:00
.toolbar {
display: flex;
gap: 10px;
align-items: center;
padding: 0px 10px;
background-color: #323232;
border-radius: 4px;
.error {
color: #ffcaca;
}
2024-10-26 17:57:34 +09:00
.name {
font-size: inherit;
2024-10-27 12:34:54 +09:00
padding: 14px 6px;
&:hover:not(.previewDisabled) {
cursor: pointer;
2024-10-29 21:04:49 +09:00
text-decoration: underline dotted;
}
2024-10-26 17:57:34 +09:00
}
.options {
flex-grow: 1;
display: flex;
padding: 14px 2px;
gap: 10px;
height: 100%;
overflow-x: auto;
2024-10-26 17:57:34 +09:00
scrollbar-width: thin;
scrollbar-color: gray #323232;
align-items: center;
2024-10-28 21:33:41 +09:00
* {
2024-10-26 17:57:34 +09:00
display: flex;
2024-10-27 12:34:54 +09:00
gap: 6px;
2024-10-26 17:57:34 +09:00
}
}
}
.output {
height: 200px;
2024-10-26 17:57:34 +09:00
}
2024-10-27 12:34:54 +09:00
.error {
color: #ffcaca;
}
2024-10-26 17:57:34 +09:00
}