12 lines
264 B
SCSS
12 lines
264 B
SCSS
@use 'sass:map';
|
|
@use '@beeline/design-tokens/scss/tokens/globals';
|
|
@use '@beeline/design-tokens/scss/tokens/themes/dark';
|
|
|
|
.label {
|
|
line-height: globals.$font-line-height-caption;
|
|
|
|
.dark-theme & {
|
|
color: map.get(dark.$theme, 'color-text-inactive');
|
|
}
|
|
}
|