27 lines
509 B
SCSS
27 lines
509 B
SCSS
@use "scheme";
|
|
@use "lib";
|
|
@use "font";
|
|
|
|
.brightness,
|
|
.volume {
|
|
@include lib.rounded(8);
|
|
@include lib.border(scheme.$overlay0, 0.1);
|
|
@include lib.shadow;
|
|
@include font.mono;
|
|
|
|
background-color: scheme.$base;
|
|
font-size: lib.s(16);
|
|
padding: lib.s(3);
|
|
|
|
.inner {
|
|
@include lib.fluent-decel(1000ms);
|
|
|
|
min-width: lib.s(300);
|
|
min-height: lib.s(32);
|
|
background-color: scheme.$teal;
|
|
}
|
|
}
|
|
|
|
.volume .inner.mute {
|
|
background-color: scheme.$overlay0;
|
|
}
|