-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathglobals.css
46 lines (42 loc) · 1.03 KB
/
globals.css
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
43
44
45
46
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--color-foreground: 236 15% 16%;
--color-neutral: 224 11% 45%;
--color-muted: 222 10% 55%;
-moz-osx-font-smoothing: grayscale; /* Firefox */
-webkit-font-smoothing: antialiased; /* WebKit */
--font-inter: "InterVariable";
}
}
@supports (font-variation-settings: normal) {
:root {
font-optical-sizing: auto;
}
}
@font-face {
font-family: InterVariable;
font-style: normal;
font-weight: 100 900;
font-display: swap;
src: url("/fonts/InterVariable/InterVariable.woff2") format("woff2");
}
@font-face {
font-family: InterVariable;
font-style: italic;
font-weight: 100 900;
font-display: swap;
src: url("/fonts/InterVariable/InterVariable-Italic.woff2") format("woff2");
}
@layer components {
.hide-scrollbars::-webkit-scrollbar {
background: transparent; /* Chrome/Safari/Webkit */
width: 0px;
}
.hide-scrollbars {
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IE 10+ */
}
}