summaryrefslogtreecommitdiffstats
path: root/src/components/CommentForm
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/CommentForm
parent395069f8cecd2deab2dfe1a2d7b97f379413e009 (diff)
refactor(styles): rename shadow and border variables
Diffstat (limited to 'src/components/CommentForm')
-rw-r--r--src/components/CommentForm/CommentForm.module.scss6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/CommentForm/CommentForm.module.scss b/src/components/CommentForm/CommentForm.module.scss
index 922923a..d19a1ef 100644
--- a/src/components/CommentForm/CommentForm.module.scss
+++ b/src/components/CommentForm/CommentForm.module.scss
@@ -10,11 +10,11 @@
padding: var(--spacing-md);
position: relative;
background: var(--color-bg);
- border: fun.convert-px(1) solid var(--color-border-light);
+ border: fun.convert-px(1) solid var(--color-border);
box-shadow: fun.convert-px(3) fun.convert-px(3) 0 0
- var(--color-shadow-lighter),
+ var(--color-shadow-light),
fun.convert-px(4) fun.convert-px(4) fun.convert-px(3) fun.convert-px(-2)
- var(--color-shadow-light);
+ var(--color-shadow);
}
}