Skip to content

Commit

Permalink
fix: county size
Browse files Browse the repository at this point in the history
  • Loading branch information
Valexr committed Apr 14, 2024
1 parent bd4e7ee commit 69ee89b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
</header>

<main>
<h2>{$date}</h2>
<!-- <h2>{$date}</h2> -->
<ul>
<li id="years">{$county.years}</li>
<li id="months">{$county.months}</li>
Expand Down Expand Up @@ -95,11 +95,11 @@
list-style: none;
padding: 0;
margin: 0;
font-size: 30vw;
font-size: min(30vw, 25vh);
font-weight: bold;
display: flex;
justify-content: center;
gap: 5vw;
gap: 0.15em;
margin-bottom: 0.5em;
}
ul li {
Expand Down

0 comments on commit 69ee89b

Please sign in to comment.