Convert borders and margins to rem from px in profile

This commit is contained in:
Connor Wittman 2024-10-15 17:17:44 -04:00
parent 3149f65a97
commit 071dcad0cc

View File

@ -4,7 +4,7 @@
width: 16rem; width: 16rem;
background: #1c1c1c; background: #1c1c1c;
height: 100vh; height: 100vh;
margin: 2px; margin: 0.2rem;
border-radius: 0.5rem; border-radius: 0.5rem;
.profile-container { .profile-container {
@ -12,7 +12,7 @@
border-radius: 0.4rem; border-radius: 0.4rem;
margin: 0.2rem; margin: 0.2rem;
min-height: 6rem; 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; padding: 0.5rem;
.profile-icon { .profile-icon {
@ -43,7 +43,7 @@
width: 10rem; width: 10rem;
z-index: 1; z-index: 1;
background-color: #1c1c1c; background-color: #1c1c1c;
border: 2px solid rgba(89, 89, 89, 0.199); border: 0.2rem solid rgba(89, 89, 89, 0.199);
.dropdown-logged { .dropdown-logged {
display: flex; display: flex;
@ -59,7 +59,7 @@
padding: 0.5rem; padding: 0.5rem;
border-radius: 0.5rem; border-radius: 0.5rem;
background-color: #1c1c1c; background-color: #1c1c1c;
border: 2px solid rgba(89, 89, 89, 0.199); border: 0.2rem solid rgba(89, 89, 89, 0.199);
color: white; color: white;
cursor: pointer; cursor: pointer;
transition: all 0.3s; transition: all 0.3s;