blob: 2a27e4696adb019193be57e5e903a1d8799f61ec (
plain) (
blame)
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
35
36
37
38
39
40
41
42
|
// vim: ft=scss
*,
::before,
::after {
--br: 0.15rem;
}
body {
// block ugly font
font-family:
sans-serif,
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol"
!important;
// less rounded corners
.tw-rounded-full,
.tw-rounded-2xl,
.\!tw-rounded-r-lg,
.\!tw-rounded-l-lg,
.tw-rounded-r-lg,
.tw-rounded-l-lg,
.tw-rounded-lg,
.tw-rounded-md,
.tw-rounded {
border-radius: var(--br) !important;
}
.card {
border-radius: var(--br) !important;
}
.card-header:first-child {
border-radius:
calc(var(--br) - 1px) calc(var(--br) - 1px) 0 0 !important;
}
}
|