From 071dcad0cc873cd8b08b885ad9ae900205c65f56 Mon Sep 17 00:00:00 2001 From: ecco257 Date: Tue, 15 Oct 2024 17:17:44 -0400 Subject: [PATCH] Convert borders and margins to rem from px in profile --- style/personal.scss | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/style/personal.scss b/style/personal.scss index 7b142d4..08c6e93 100644 --- a/style/personal.scss +++ b/style/personal.scss @@ -4,7 +4,7 @@ width: 16rem; background: #1c1c1c; height: 100vh; - margin: 2px; + margin: 0.2rem; border-radius: 0.5rem; .profile-container { @@ -12,7 +12,7 @@ border-radius: 0.4rem; margin: 0.2rem; min-height: 6rem; - border: 2px solid rgba(89, 89, 89, 0.199); + border: 0.2rem solid rgba(89, 89, 89, 0.199); padding: 0.5rem; .profile-icon { @@ -43,7 +43,7 @@ width: 10rem; z-index: 1; background-color: #1c1c1c; - border: 2px solid rgba(89, 89, 89, 0.199); + border: 0.2rem solid rgba(89, 89, 89, 0.199); .dropdown-logged { display: flex; @@ -55,15 +55,15 @@ font-size: 1.2rem; } .auth-button { - margin-top: 0.5rem; - padding: 0.5rem; - border-radius: 0.5rem; - background-color: #1c1c1c; - border: 2px solid rgba(89, 89, 89, 0.199); - color: white; - cursor: pointer; - transition: all 0.3s; - margin-bottom: 0.5rem; + margin-top: 0.5rem; + padding: 0.5rem; + border-radius: 0.5rem; + background-color: #1c1c1c; + border: 0.2rem solid rgba(89, 89, 89, 0.199); + color: white; + cursor: pointer; + transition: all 0.3s; + margin-bottom: 0.5rem; } } }