fix: styles

This commit is contained in:
Cory Dransfeldt 2024-09-02 18:35:53 -07:00
parent dcce613295
commit 6ac50af454
No known key found for this signature in database
10 changed files with 20 additions and 20 deletions

View file

@ -59,7 +59,7 @@
border-radius: var(--border-radius-slight);
transition-property: border-color;
transition-timing-function: var(--transition-ease-in-out);
transition-duration: 300ms;
transition-duration: var(--transition-duration-default);
}
}

View file

@ -109,11 +109,11 @@
}
#menu-toggle:checked ~ .menu-primary li {
border-bottom: 1px solid var(--gray-light);
border-bottom: var(--border-gray);
height: calc(var(--sizing-3xl) * 1.5);
&:first-child {
border-top: 1px solid var(--gray-light);
border-top: var(--border-gray);
}
& a,

View file

@ -72,6 +72,6 @@
max-height: 75%;
max-width: 75%;
inset: 12.5%;
border: 1px solid var(--gray-light);
border: var(--border-gray);
}
}

View file

@ -2,7 +2,7 @@
display: flex;
height: var(--sizing-lg);
width: 100%;
background-color: rgba(217, 222, 228, .6);
background-color: #d9dee499;
border-radius: var(--border-radius-full);
& .progress-bar {