Skip to content

Commit 76a1b10

Browse files
committed
2 parents aeb63e9 + 794868f commit 76a1b10

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
deploy:
11-
runs-on: ubuntu-20.04 # Set platform for runner
11+
runs-on: ubuntu-22.04 # Set platform for runner
1212
concurrency:
1313
group: ${{ github.workflow }}-${{ github.ref }}
1414
steps:

src/lib/components/page/menu/MenuItem.svelte

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626

2727
{#if menubarItem.Items.length < 1}
2828
<div class="p-2">
29-
29+
3030
<button class="grid" use:popup={popupCombobox} >
3131
<a class="grid" href={menubarItem.Url} target="{menubarItem.Target}">
32-
<span class="capitalize whitespace-nowrap">{comboboxValue ?? menubarItem.Title}</span>
32+
<span class="capitalize whitespace-nowrap hover:font-bold">{comboboxValue ?? menubarItem.Title}</span>
3333
</a>
3434
</button>
3535
</div>
@@ -38,7 +38,7 @@
3838
<AccordionItem padding="p-2">
3939
<svelte:fragment slot="summary"
4040
><button class="flex items-center gap-x-1">
41-
<span class="capitalize">{menubarItem.Title}</span>
41+
<span class="capitalize hover:font-bold">{menubarItem.Title}</span>
4242
</button></svelte:fragment
4343
>
4444
<svelte:fragment slot="content"
@@ -49,7 +49,7 @@
4949
</div>
5050
<div class="hidden sm:block place-self-center" use:popup={popupCombobox}>
5151
<button class="flex items-center gap-x-1 px-2">
52-
<span>{menubarItem.Title}▾</span>
52+
<span class="capitalize whitespace-nowrap hover:font-bold">{menubarItem.Title}▾</span>
5353
</button>
5454

5555
<div class="z-50 w-max" data-popup={id}>

0 commit comments

Comments
 (0)