From a8f80a02b88055cfcb45664ce3a3d24c2b2da98c Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Sun, 10 Jul 2022 23:41:20 +1000 Subject: Update project-level and client-side documentation --- src/index.css | 46 ++++++++++++++++++++++++---------------------- 1 file changed, 24 insertions(+), 22 deletions(-) (limited to 'src/index.css') 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; +} -- cgit v1.2.3