0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2024-11-22 14:08:23 -05:00

chore: revert percentage values into decimals and trimmed blank lines before first rule inside media queries

This commit is contained in:
cybrejon 2024-02-22 01:14:10 +08:00
parent 338e074887
commit f98182353e

View File

@ -97,7 +97,7 @@ button {
height: 3rem; height: 3rem;
outline: none; outline: none;
border: none; border: none;
box-shadow: rgb(0 0 0 / 100%); box-shadow: rgb(0 0 0 / 1);
background-color: var(--color-one); background-color: var(--color-one);
color: var(--foreground-color); color: var(--foreground-color);
outline-offset: 3px; outline-offset: 3px;
@ -235,7 +235,7 @@ button {
} }
.error_box .dropdown_error_box .error_item:hover { .error_box .dropdown_error_box .error_item:hover {
box-shadow: inset 0 0 100px 100px rgb(255 255 255 / 10%); box-shadow: inset 0 0 100px 100px rgb(255 255 255 / 0.1);
} }
.error_box .error_item .severity_color { .error_box .error_item .severity_color {
@ -848,7 +848,6 @@ input:checked + .slider::before {
} }
@media screen and (width <= 1136px) { @media screen and (width <= 1136px) {
.hero-text-container { .hero-text-container {
width: unset; width: unset;
} }
@ -856,11 +855,9 @@ input:checked + .slider::before {
.features { .features {
grid-template-columns: repeat(2, 1fr); grid-template-columns: repeat(2, 1fr);
} }
} }
@media screen and (width <= 706px) { @media screen and (width <= 706px) {
.about-container article .logo-container svg { .about-container article .logo-container svg {
width: clamp(200px, 290px, 815px); width: clamp(200px, 290px, 815px);
} }
@ -892,5 +889,4 @@ input:checked + .slider::before {
.feature-card { .feature-card {
border-radius: 0; border-radius: 0;
} }
} }