aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/layout/overview.module.scss
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-04-15 22:20:09 +0200
committerArmand Philippot <git@armandphilippot.com>2022-04-15 22:31:17 +0200
commitedea15c845b33848b7b4f63616841e675b74d572 (patch)
tree8b9d9bc0ae8db49b13c76e80a4ed2d3e3a247573 /src/components/organisms/layout/overview.module.scss
parent52295600772281d83885a49f57d5d2092fcc8397 (diff)
chore: add an Overview component
Diffstat (limited to 'src/components/organisms/layout/overview.module.scss')
-rw-r--r--src/components/organisms/layout/overview.module.scss12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/components/organisms/layout/overview.module.scss b/src/components/organisms/layout/overview.module.scss
new file mode 100644
index 0000000..4d50ad1
--- /dev/null
+++ b/src/components/organisms/layout/overview.module.scss
@@ -0,0 +1,12 @@
+@use "@styles/abstracts/functions" as fun;
+
+.wrapper {
+ padding: var(--spacing-sm) var(--spacing-md);
+ border: fun.convert-px(1) solid var(--color-border);
+}
+
+.cover {
+ max-height: fun.convert-px(150);
+ margin: 0 auto var(--spacing-md);
+ border: fun.convert-px(1) solid var(--color-border);
+}