aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/images/logo.module.scss
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-04-04 14:48:05 +0200
committerArmand Philippot <git@armandphilippot.com>2022-04-04 15:19:18 +0200
commita46f8f9ffeb2c32ca21d58ce13bff189fec84cb0 (patch)
treedba2229e68896c1a4e7d8784b606eaa3a625ce8f /src/components/atoms/images/logo.module.scss
parent9b445e635e2694c0d6095a1a2613fc59314dc595 (diff)
chore: add a Logo component
Diffstat (limited to 'src/components/atoms/images/logo.module.scss')
-rw-r--r--src/components/atoms/images/logo.module.scss28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/components/atoms/images/logo.module.scss b/src/components/atoms/images/logo.module.scss
new file mode 100644
index 0000000..f802a4b
--- /dev/null
+++ b/src/components/atoms/images/logo.module.scss
@@ -0,0 +1,28 @@
+@use "@styles/abstracts/functions" as fun;
+
+.wrapper {
+ width: var(--logo-size, fun.convert-px(100));
+ height: var(--logo-size, fun.convert-px(100));
+ max-width: 100%;
+ max-height: 100%;
+}
+
+.bg-left {
+ fill: var(--color-primary-light);
+}
+
+.bg-right {
+ fill: var(--color-primary-dark);
+}
+
+.letter {
+ fill: var(--color-fg-inverted);
+ stroke: var(--color-primary-darker);
+ stroke-width: 5;
+}
+
+.letter-shadow {
+ fill: var(--color-shadow-darker);
+ stroke: var(--color-shadow-darker);
+ stroke-width: 5;
+}