mirror of
https://github.com/aljazceru/opencode.git
synced 2026-02-02 14:45:04 +01:00
31 lines
594 B
CSS
31 lines
594 B
CSS
[data-component="list"] {
|
|
/* overflow-y: auto; */
|
|
|
|
/* Hide scrollbar */
|
|
&::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
-ms-overflow-style: none;
|
|
scrollbar-width: none;
|
|
|
|
[data-slot="item"] {
|
|
width: 100%;
|
|
margin-bottom: 6px;
|
|
padding: 4px 12px;
|
|
text-align: left;
|
|
|
|
border-radius: var(--radius-md);
|
|
transition: background-color 0.2s ease-in-out;
|
|
|
|
&[data-active="true"] {
|
|
background-color: var(--surface-raised-base-hover);
|
|
}
|
|
&:hover {
|
|
background-color: var(--surface-raised-base-hover);
|
|
}
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
}
|
|
}
|