12 lines
280 B
SCSS
12 lines
280 B
SCSS
|
|
@use '@beeline/design-tokens/scss/tokens/components/button' as button;
|
||
|
|
@use '@beeline/design-tokens/scss/tokens/themes';
|
||
|
|
|
||
|
|
.button {
|
||
|
|
font-weight: button.$button-medium-text-font-weight;
|
||
|
|
color: themes.$color-text-active;
|
||
|
|
|
||
|
|
&:hover {
|
||
|
|
color: themes.$color-text-active;
|
||
|
|
}
|
||
|
|
}
|