blob: 44996b51f6a6862ac2745d2394069f5f6bd5b175 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* From Tailwind */
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Other */
@font-face {
font-family: Ubuntu;
src: url('/font/Ubuntu-Regular.woff2');
}
body {
font-family: Ubuntu, system-ui, sans-serif;
touch-action: manipulation; /* Prevents non-standard gestures such as double-tap to zoom */
}
a {
@apply hover:underline hover:cursor-pointer;
}
|