17 lines
322 B
SCSS
17 lines
322 B
SCSS
@use '@beeline/design-tokens/scss/tokens/themes';
|
|
|
|
.dropdown {
|
|
&-content {
|
|
background-color: themes.$color-background-medium;
|
|
}
|
|
|
|
.dropdown-item {
|
|
color: themes.$color-text-active;
|
|
|
|
&:hover {
|
|
background-color: themes.$color-background-base-hover;
|
|
color: themes.$color-text-active;
|
|
}
|
|
}
|
|
}
|