-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.css
41 lines (36 loc) · 1.04 KB
/
tailwind.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
@tailwind base;
@tailwind components;
@tailwind utilities;
/******************************************************************************
* Customizations *
******************************************************************************/
/* prevent double-tap to zoom when clicking buttons */
/* see: https://github.com/tailwindlabs/tailwindcss/discussions/3020 */
button {
touch-action: manipulation;
}
code {
/* temporary fix to remove strange rendering of text via prism */
text-shadow: none;
}
@layer base {
@font-face {
font-family: Mafins;
src: url('/fonts/Mafins.otf');
}
@font-face {
font-family: Milk and Honey;
src: url('/fonts/Milk And Honey.otf');
}
}
@layer utilities {
/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
}