Skip to content

Commit 8a7b41e

Browse files
committed
fix: font-size
1 parent d098406 commit 8a7b41e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

platforms/metagram/src/lib/ui/Select/Select.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
</script>
2626

2727
<div {...restProps} class={cn([cBase, restProps.class].join(' '))}>
28-
<div class="rounded-full text-xl">{options.find((c) => c.code === selectedCode)?.flag}</div>
28+
<div class="rounded-full text-2xl">{options.find((c) => c.code === selectedCode)?.flag}</div>
2929
<select
3030
bind:value={selectedCode}
31-
class="text-md focus:ring-2 focus:ring-transparent focus:outline-none"
31+
class="text-base focus:ring-2 focus:ring-transparent focus:outline-none"
3232
>
3333
{#each options as country}
3434
<option value={country.code} class="text-md text-black-600">

0 commit comments

Comments
 (0)