summaryrefslogtreecommitdiff
path: root/scss/osds.scss
blob: 62a38f520afc03e13be31a2e1f542e57207cc517 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@use "scheme";
@use "lib";
@use "font";

.brightness,
.volume {
    @include lib.rounded(8);
    @include font.icon;

    background-color: scheme.$mantle;
    font-size: lib.s(28);
    padding: lib.s(3);

    .inner {
        @include lib.rounded(8);
        @include lib.fluent-decel(1000ms);

        min-width: lib.s(300);
        min-height: lib.s(32);
        background-color: scheme.$teal;
        color: scheme.$mantle;
    }
}

.brightness {
    font-size: lib.s(26);
}