summaryrefslogtreecommitdiffstats
path: root/src/components/PostHeader/PostHeader.module.scss
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-01-16 18:23:20 +0100
committerArmand Philippot <git@armandphilippot.com>2022-01-16 18:23:20 +0100
commit90ffd597a35891f71665ee442b90e99d6e579118 (patch)
tree9da836da4d0334b7eb46a68a665b44f10607c8b1 /src/components/PostHeader/PostHeader.module.scss
parent395069f8cecd2deab2dfe1a2d7b97f379413e009 (diff)
refactor(styles): rename shadow and border variables
Diffstat (limited to 'src/components/PostHeader/PostHeader.module.scss')
-rw-r--r--src/components/PostHeader/PostHeader.module.scss10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/PostHeader/PostHeader.module.scss b/src/components/PostHeader/PostHeader.module.scss
index 33dc488..f813060 100644
--- a/src/components/PostHeader/PostHeader.module.scss
+++ b/src/components/PostHeader/PostHeader.module.scss
@@ -22,20 +22,20 @@
width: 100%;
height: 100%;
background: var(--color-bg-secondary);
- border-top: fun.convert-px(3) solid var(--color-border-lighter);
- border-bottom: fun.convert-px(3) solid var(--color-border-lighter);
+ border-top: fun.convert-px(3) solid var(--color-border-light);
+ border-bottom: fun.convert-px(3) solid var(--color-border-light);
}
&::before {
grid-column: 1;
justify-self: start;
- border-right: fun.convert-px(3) solid var(--color-border-lighter);
+ border-right: fun.convert-px(3) solid var(--color-border-light);
}
&::after {
grid-column: 3;
justify-self: end;
- border-left: fun.convert-px(3) solid var(--color-border-lighter);
+ border-left: fun.convert-px(3) solid var(--color-border-light);
}
}
@@ -51,7 +51,7 @@
align-items: center;
margin: 0;
position: relative;
- text-shadow: fun.convert-px(1) fun.convert-px(1) 0 var(--color-shadow-lighter);
+ text-shadow: fun.convert-px(1) fun.convert-px(1) 0 var(--color-shadow-light);
&::before,
&::after {