2024-10-26 17:57:34 +09:00
|
|
|
.item {
|
|
|
|
background-color: #1e1e1e;
|
|
|
|
border-radius: 6px;
|
|
|
|
display: flex;
|
|
|
|
padding: 10px;
|
|
|
|
flex-direction: column;
|
2024-10-27 12:34:54 +09:00
|
|
|
min-height: 250px;
|
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;
|
|
|
|
|
|
|
|
.name {
|
|
|
|
font-size: inherit;
|
2024-10-27 12:34:54 +09:00
|
|
|
padding: 14px 6px;
|
2024-10-26 17:57:34 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.options {
|
|
|
|
flex-grow: 1;
|
|
|
|
display: flex;
|
|
|
|
padding: 14px 2px;
|
|
|
|
gap: 10px;
|
|
|
|
height: 100%;
|
|
|
|
overflow-x: scroll;
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-10-27 12:34:54 +09:00
|
|
|
|
|
|
|
.error {
|
|
|
|
color: #ffcaca;
|
|
|
|
}
|
2024-10-26 17:57:34 +09:00
|
|
|
}
|