blob: 02e0c0a3d8c821a9c44090e9cf621db101366921 (
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
28
29
30
31
32
33
34
|
.applauncher {
background-color: $bg;
border: 2px solid $ui2;
color: $tx;
padding: 16px;
border-radius: 24px;
font-family: Inter;
}
.app-input {
background-color: $ui;
padding: 4px 16px;
margin-bottom: 8px;
border-radius: 999px;
}
.applist > scrollbar {
background-color: $ui;
border-radius: 3px;
slider {
background-color: $re;
min-width: 6px;
border-radius: 3px;
}
}
.app {
padding: 4px;
}
.app:hover {
color: $re;
}
|