mirror of
https://github.com/remvze/moodist.git
synced 2026-03-09 21:43:18 +08:00
29 lines
576 B
CSS
29 lines
576 B
CSS
.item {
|
|
display: flex;
|
|
column-gap: 8px;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
width: 100%;
|
|
padding: 16px 12px;
|
|
font-size: var(--font-sm);
|
|
font-weight: 500;
|
|
line-height: 1;
|
|
color: var(--color-foreground-subtle);
|
|
text-align: left;
|
|
cursor: pointer;
|
|
background-color: transparent;
|
|
border: 1px solid var(--color-neutral-200);
|
|
border-radius: 4px;
|
|
outline: none;
|
|
transition: 0.2s;
|
|
|
|
&:hover {
|
|
color: var(--color-foreground);
|
|
background-color: var(--color-neutral-200);
|
|
}
|
|
|
|
& .icon {
|
|
color: var(--color-foreground);
|
|
}
|
|
}
|