From bb56d24f02f90de658aca86631d55a683ddc1ca1 Mon Sep 17 00:00:00 2001 From: Adrien Date: Sat, 9 Mar 2024 22:44:04 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20Add=20border=20variables=20to=20?= =?UTF-8?q?the=20base=20SCSS=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/_base.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/_base.scss b/src/_base.scss index eed03cc..28d5acd 100644 --- a/src/_base.scss +++ b/src/_base.scss @@ -51,9 +51,17 @@ $color-ternary-70: #8B0046; $color-ternary-60: #720033; $color-ternary-50: #5A0022; +$border-default-color: $greyscale-90; +$border-big-width: 4px; +$border-big: solid $border-big-width $border-default-color; +$border-normal-width: 2px; +$border-normal: solid $border-normal-width $border-default-color; + + $form-max-height: 1024px; $form-aspect-ratio: 1/1.618; +// TODO: Radius should be a percentage(eg: 1024/16px). $border-radius: 16px; $geist-font-path: "../fonts/Geist";