aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-05-05 17:58:40 +0200
committerArmand Philippot <git@armandphilippot.com>2022-05-05 18:20:18 +0200
commita13022cd4c0a7cf0f00a6db49fad13db22d63dd6 (patch)
tree80dce20873c8812a07ced25b6ded1c4d272fb23a /src/styles
parentee04742d1f0645908baa30e47845126c28848f50 (diff)
chore: add a Projects page
Diffstat (limited to 'src/styles')
-rw-r--r--src/styles/pages/Projects.module.scss13
-rw-r--r--src/styles/pages/projects.module.scss9
2 files changed, 9 insertions, 13 deletions
diff --git a/src/styles/pages/Projects.module.scss b/src/styles/pages/Projects.module.scss
deleted file mode 100644
index 3fd74cb..0000000
--- a/src/styles/pages/Projects.module.scss
+++ /dev/null
@@ -1,13 +0,0 @@
-.article {
- composes: grid from "@styles/layout/_grid.scss";
- align-items: start;
-
- > header {
- grid-column: 1 / -1;
- }
-}
-
-.body {
- grid-column: 1 / -1;
- margin-bottom: var(--spacing-xl);
-}
diff --git a/src/styles/pages/projects.module.scss b/src/styles/pages/projects.module.scss
new file mode 100644
index 0000000..735a683
--- /dev/null
+++ b/src/styles/pages/projects.module.scss
@@ -0,0 +1,9 @@
+@use "@styles/abstracts/mixins" as mix;
+
+.list {
+ @include mix.media("screen") {
+ @include mix.dimensions("md") {
+ margin: 0 calc(var(--spacing-3xl) * -1) var(--spacing-md);
+ }
+ }
+}