From 2b5b99cdbcf9dbd168d2401b1bfc98b20dd1a290 Mon Sep 17 00:00:00 2001 From: Fractal-Tess Date: Mon, 12 Sep 2022 20:30:10 +0300 Subject: [PATCH] removed scss --- src/styles/{app.scss => app.postcss} | 15 +++++++++------ src/styles/variables.scss | 1 - 2 files changed, 9 insertions(+), 7 deletions(-) rename src/styles/{app.scss => app.postcss} (61%) delete mode 100644 src/styles/variables.scss diff --git a/src/styles/app.scss b/src/styles/app.postcss similarity index 61% rename from src/styles/app.scss rename to src/styles/app.postcss index b3eaded..4460f7d 100644 --- a/src/styles/app.scss +++ b/src/styles/app.postcss @@ -1,15 +1,15 @@ +@import '@fontsource/roboto/index.css'; + @tailwind base; @tailwind components; @tailwind utilities; -@import '@fontsource/roboto/index.css'; - html { -webkit-font-smoothing: antialiased; } body, html { - // Fix tailwindcss/daisyUI applying color to the body tag + /* Fix tailwindcss/daisyUI applying color to the body tag */ background-color: transparent !important; @apply rounded-3xl overflow-hidden; } @@ -18,7 +18,10 @@ html { @apply transition-all; } -// Class is used for development purposes only. -.dev { - border: 1px solid red; + +@layer utilities { + /* Class is used for development purposes only */ + .dev { + border: 1px solid red; + } } diff --git a/src/styles/variables.scss b/src/styles/variables.scss deleted file mode 100644 index ca9fb5d..0000000 --- a/src/styles/variables.scss +++ /dev/null @@ -1 +0,0 @@ -// Use this file for variable used in scss, this file will be imported into every single component