update transitions to avoid lots of movement
All checks were successful
Static / build (push) Successful in 12s

This commit is contained in:
brooke 2024-11-11 22:37:03 -05:00
parent 0da1503c8c
commit 37145136b3

View file

@ -123,7 +123,11 @@ body,
a { a {
color: #f3bbae; color: #f3bbae;
transition: all 0.3s; transition: color 0.3s ease;
}
label>a {
transition: none !important;
} }
p { p {
@ -158,21 +162,19 @@ ul.custom-bullet li::before {
display: flex; display: flex;
margin: 0; margin: 0;
padding: 0.35rem 0.75rem; padding: 0.35rem 0.75rem;
transition: all 0.3s;
} }
.tab:hover a, .tab:hover a,
.tab:hover svg { .tab:hover svg {
color: #241917 !important; color: #241917 !important;
fill: #241917 !important; fill: #241917 !important;
transition: all 0.3s;
} }
.tab:hover label { .tab:hover label {
background-color: #9a756c; background-color: #9a756c;
color: #241917; color: #241917;
font-weight: 700; font-weight: 700;
transition: all 0.3s; transition: background-color 0.3s ease;
} }
.tab-content { .tab-content {
@ -292,7 +294,7 @@ a {
position: fixed; position: fixed;
right: 0; right: 0;
top: 0; top: 0;
transition: all 0.3s; transition: background-color 0.3s ease;
visibility: hidden; visibility: hidden;
z-index: 999; z-index: 999;
@ -371,7 +373,7 @@ a {
background-color: #9a756c; background-color: #9a756c;
color: #241917 !important; color: #241917 !important;
font-weight: 700; font-weight: 700;
transition: all 0.3s; transition: background-color 0.3s ease;
} }
.modal-text { .modal-text {