Skip to content

Commit ad4e0a8

Browse files
committedMay 22, 2025
minor .
1 parent ce41c8f commit ad4e0a8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎src/routes/+page.svelte

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,19 +48,19 @@
4848

4949
<div class="col-6">
5050
<button
51-
class="btn {!textBoxToggle ? `btn-success` : `btn-danger`} w-100"
51+
class="btn {!textBoxToggle ? `btn-outline-light` : `btn-light`} w-100"
5252
onclick={() => (textBoxToggle = !textBoxToggle)}
5353
>
54-
{!textBoxToggle ? 'Show' : 'Hide'} Text Input
54+
{!textBoxToggle ? '' : ''} Text Input
5555
</button>
5656
</div>
5757

5858
<div class="col-6">
5959
<button
60-
class="btn {!loadMenu ? `btn-secondary` : `btn-danger`} w-100"
60+
class="btn {!loadMenu ? `btn-outline-light` : `btn-light`} w-100"
6161
onclick={() => (loadMenu = !loadMenu)}
6262
>
63-
{!textBoxToggle ? 'Load' : 'Unload'} External JSON
63+
{!loadMenu ? '' : ''} External JSON
6464
</button>
6565
</div>
6666

0 commit comments

Comments
 (0)