aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2021-12-13 00:34:24 +0100
committerArmand Philippot <git@armandphilippot.com>2021-12-13 00:34:24 +0100
commit6604784f31685b22cec48532616ca774765f923e (patch)
treef04efbf6a1b14afce887815213d7cb25a0b5382d /src/styles
parent6c1cbe9f4d956ad6140c780b2f88f5de4e4eee67 (diff)
chore: add modern normalize and change global css to scss file
Diffstat (limited to 'src/styles')
-rw-r--r--src/styles/globals.css16
-rw-r--r--src/styles/globals.scss8
2 files changed, 8 insertions, 16 deletions
diff --git a/src/styles/globals.css b/src/styles/globals.css
deleted file mode 100644
index e5e2dcc..0000000
--- a/src/styles/globals.css
+++ /dev/null
@@ -1,16 +0,0 @@
-html,
-body {
- padding: 0;
- margin: 0;
- font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
- Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
-}
-
-a {
- color: inherit;
- text-decoration: none;
-}
-
-* {
- box-sizing: border-box;
-}
diff --git a/src/styles/globals.scss b/src/styles/globals.scss
new file mode 100644
index 0000000..6647548
--- /dev/null
+++ b/src/styles/globals.scss
@@ -0,0 +1,8 @@
+@charset 'utf-8';
+
+/**
+ * 1.0. Vendors
+ *
+ * Import each files separately to define vendors styles order.
+ */
+@use "modern-normalize";