aboutsummaryrefslogtreecommitdiff
path: root/src/index.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.css')
-rw-r--r--src/index.css46
1 files changed, 24 insertions, 22 deletions
diff --git a/src/index.css b/src/index.css
index 3330a37..855e9f0 100644
--- a/src/index.css
+++ b/src/index.css
@@ -1,29 +1,8 @@
+/* From Tailwind */
@tailwind base;
@tailwind components;
@tailwind utilities;
-@font-face {
- font-family: Ubuntu;
- src: url('/fonts/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;
-}
-::-webkit-scrollbar {
- background-color: #1c1917;
- width: 12px;
- height: 12px;
-}
-::-webkit-scrollbar-thumb {
- background: #65a30d;
- border-radius: 5px;
- border: 3px solid #1c1917;
-}
-
/* For transitions/animations */
.fade-enter-from, .fade-leave-to {
opacity: 0;
@@ -114,3 +93,26 @@ a {
color: inherit;
}
}
+
+/* Other */
+@font-face {
+ font-family: Ubuntu;
+ src: url('/fonts/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;
+}
+::-webkit-scrollbar {
+ background-color: #1c1917;
+ width: 12px;
+ height: 12px;
+}
+::-webkit-scrollbar-thumb {
+ background: #65a30d;
+ border-radius: 5px;
+ border: 3px solid #1c1917;
+}