summaryrefslogtreecommitdiffstats
path: root/src/components/FooterNav/FooterNav.module.scss
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2021-12-13 22:52:24 +0100
committerArmand Philippot <git@armandphilippot.com>2021-12-13 22:52:24 +0100
commite8a61bd7e49bf2a24fa1905a45e83380056a7368 (patch)
tree52f4552b5cb90717e8caf3e674f0cfaf245ec26f /src/components/FooterNav/FooterNav.module.scss
parentaec575c3b5797069e4964cfafa26e3de3b92f99e (diff)
chore: add footer nav
Diffstat (limited to 'src/components/FooterNav/FooterNav.module.scss')
-rw-r--r--src/components/FooterNav/FooterNav.module.scss17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/components/FooterNav/FooterNav.module.scss b/src/components/FooterNav/FooterNav.module.scss
new file mode 100644
index 0000000..af72df0
--- /dev/null
+++ b/src/components/FooterNav/FooterNav.module.scss
@@ -0,0 +1,17 @@
+@use "@styles/abstracts/placeholders";
+
+.wrapper {
+ font-size: var(--font-size-sm);
+}
+
+.list {
+ @extend %flex-list;
+ gap: var(--spacing-xs);
+}
+
+.item {
+ &::before {
+ content: "\2022";
+ margin-right: var(--spacing-xs);
+ }
+}