23 lines
296 B
SCSS
23 lines
296 B
SCSS
.item {
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
padding: 0.375rem 0.75rem;
|
|
|
|
font-weight: var(--font-weight-medium);
|
|
white-space: nowrap;
|
|
|
|
transition: opacity 0.15s;
|
|
|
|
&:hover {
|
|
opacity: 0.85;
|
|
}
|
|
}
|
|
|
|
.icon {
|
|
margin-right: 0.375rem;
|
|
}
|