aboutsummaryrefslogtreecommitdiff
path: root/src/index.css
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-10-07 12:37:48 +1100
committerTerry Truong <terry06890@gmail.com>2022-10-07 12:37:48 +1100
commit1c69c4abf6e54ccab886c23cd6e691179ce6f076 (patch)
treedfc4652254184d17ec05ead55bdc5ee5c04376bc /src/index.css
parent141f310d87f4fd7c3a4c728bf278c10fadc19606 (diff)
Install client side tools
Install and configure Vite, Vue, Tailwind, Pinia, Typescript, and ESLint Add basic framework files (index.html, App.vue, main.ts, etc) Update READMEs Add favicon, font, and LICENCE.txt
Diffstat (limited to 'src/index.css')
-rw-r--r--src/index.css17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/index.css b/src/index.css
new file mode 100644
index 0000000..44996b5
--- /dev/null
+++ b/src/index.css
@@ -0,0 +1,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;
+}