Make button margins consistent, and some other fixes

This commit is contained in:
2024-04-18 20:05:54 +02:00
parent 09528929b2
commit 46058edcc8
12 changed files with 67 additions and 35 deletions

View File

@@ -86,7 +86,7 @@ const checkout = async () => {
<div class="countries">
{#each countries as c}
<button on:click={() => country = c}>
<span style="font-size: 1.6em; line-height: 1em;">{c.flag}</span>
<span class="icon_unicode">{c.flag}</span>
<span>{c.name}</span>
</button>
{/each}
@@ -190,12 +190,6 @@ const checkout = async () => {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.countries > button {
display: flex;
flex-direction: row;
text-align: left;
gap: 5px;
}
.processors {
display: grid;