Skip to content

Commit 9209d07

Browse files
committed
Update media query font-size and border styles
Removed unnecessary semicolons from media queries and adjusted border-width in .sv-container section for improved consistency and maintainability.
1 parent 91944df commit 9209d07

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

src/App.css

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ In case we want to use px, vw, em, ch or anything other than rem on the site we
1010
is only setting the global base font size for the rem to work over.
1111
*/
1212
html { font-size: var(--global-base-font-size--desktop); }
13-
@media screen and (min-width:1920px) { html { font-size: var(--global-base-font-size--desktop-xl); } }
14-
@media screen and (max-width:1919px) { html { font-size: var(--global-base-font-size--desktop); } }
15-
@media screen and (max-width:991px) { html { font-size: var(--global-base-font-size--tablet) }; }
16-
@media screen and (max-width:479px) { html { font-size: var(--global-base-font-size--mobile) }; }
13+
@media screen and (min-width:1920px) { html { font-size: var(--global-base-font-size--desktop-xl) } }
14+
@media screen and (max-width:1919px) { html { font-size: var(--global-base-font-size--desktop) } }
15+
@media screen and (max-width:991px) { html { font-size: var(--global-base-font-size--tablet) } }
16+
@media screen and (max-width:479px) { html { font-size: var(--global-base-font-size--mobile) } }
1717

1818
html, body .root{
1919
width: 100vw;
@@ -316,8 +316,7 @@ section.sv-container{
316316
color:black;
317317
border-image: url('./Media/Windows/Window6.png') 20 21 20 20 fill stretch;
318318
border-style: solid;
319-
image-rendering: pixelated;
320-
border-width: 2.1875rem;
319+
image-rendering: pixelated;
321320
border-width: 0.625rem;
322321
padding: 0.9375rem 0;
323322
}

0 commit comments

Comments
 (0)