From d84ab215c3b5da48d689e8bd1182c49e2fbb778e Mon Sep 17 00:00:00 2001 From: daudix Date: Tue, 18 Jun 2024 04:07:24 +0300 Subject: [PATCH] Use rem for --rounded-corner --- sass/_variables.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sass/_variables.scss b/sass/_variables.scss index 635798d..0993a32 100644 --- a/sass/_variables.scss +++ b/sass/_variables.scss @@ -21,11 +21,11 @@ // VARIABLES --active: 0.9; - --blur: saturate(180%) blur(10px); + --blur: saturate(180%) blur(0.75rem); --container-width: 720px; --edge-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.1); - --rounded-corner-small: 8px; - --rounded-corner: 12px; + --rounded-corner-small: 0.5rem; + --rounded-corner: 0.75rem; --shadow-raised: 0 0 0 1px rgba(0, 0, 0, 0.06), 0 2px 6px 2px rgba(0, 0, 0, 0.14), 0 4px 12px 4px rgba(0, 0, 0, 0.06); --shadow: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 1px 3px 1px rgba(0, 0, 0, 0.07), 0 2px 6px 2px rgba(0, 0, 0, 0.03); --transition-long: 0.8s;