1
0
Fork 0

change border width. add width as variable for easy changes

This commit is contained in:
emma 2025-01-02 18:28:45 -05:00
parent fdb856dfc0
commit 9190e63f22
1 changed files with 3 additions and 2 deletions

View File

@ -5,6 +5,7 @@
--text-color: #121481;
--scrollbar-thumb: #FC819E;
--scrollbar-track: #FFCAD4;
--border-width: 5px;
}
*, *::before, *::after {
@ -120,7 +121,7 @@ header {
gap: 1rem;
padding: 1rem;
background-color: var(--header-color);
border-bottom: 4px solid var(--border-color);
border-bottom: var(--border-width) solid var(--border-color);
}
header img {
@ -151,7 +152,7 @@ header a:not(:first-child) {
section {
background-color: var(--section-color);
padding: 1.25rem;
border: 4px solid var(--border-color);
border: var(--border-width) solid var(--border-color);
border-radius: 15px;
width: 65vw;
}