Skip to content

Commit

Permalink
fix: quote position
Browse files Browse the repository at this point in the history
  • Loading branch information
Valexr committed Apr 14, 2024
1 parent 58f437c commit f99730b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,16 @@
<li id="months">{$county.months}</li>
<li id="days">{$county.days}</li>
</ul>
<h2>{$time}</h2>
</main>

<footer>
{#await getQuote() then { quote, author }}
<blockquote>
<p>{quote}</p>
<footer>~ {author}</footer>
</blockquote>
{/await}
</main>

<footer>
<h2>{$time}</h2>
</footer>
{/await}

Expand Down Expand Up @@ -97,11 +97,11 @@
list-style: none;
padding: 0;
margin: 0;
font-size: min(30vw, 25vh);
font-size: min(27.5vw, 25vh);
font-weight: bold;
display: flex;
justify-content: center;
gap: 0.15em;
gap: 0.25em;
margin-bottom: 0.25em;
}
ul li {
Expand Down

0 comments on commit f99730b

Please sign in to comment.