aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/modals/modal.module.scss
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-04-07 14:18:18 +0200
committerArmand Philippot <git@armandphilippot.com>2022-04-07 14:30:26 +0200
commitff2b6c55cc691f0b62396d9ba481c75fc870cd6a (patch)
tree6fc436cc68e9e2abc16d25d8f17c8b067da5e165 /src/components/molecules/modals/modal.module.scss
parent2d5d015d23409b456e36a0370466ee42aa47631f (diff)
chore: add a Tooltip component
Diffstat (limited to 'src/components/molecules/modals/modal.module.scss')
-rw-r--r--src/components/molecules/modals/modal.module.scss21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/components/molecules/modals/modal.module.scss b/src/components/molecules/modals/modal.module.scss
new file mode 100644
index 0000000..2fff562
--- /dev/null
+++ b/src/components/molecules/modals/modal.module.scss
@@ -0,0 +1,21 @@
+@use "@styles/abstracts/functions" as fun;
+
+.wrapper {
+ padding: var(--spacing-md);
+ background: var(--color-bg-secondary);
+ border: fun.convert-px(4) solid;
+ border-image: radial-gradient(
+ ellipse at top,
+ var(--color-primary-lighter) 20%,
+ var(--color-primary) 100%
+ )
+ 1;
+ box-shadow: fun.convert-px(2) fun.convert-px(-2) fun.convert-px(3)
+ fun.convert-px(-1) var(--color-shadow-dark);
+}
+
+.icon {
+ --icon-size: #{fun.convert-px(30)};
+
+ margin-right: var(--spacing-2xs);
+}