We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce41c8f commit ad4e0a8Copy full SHA for ad4e0a8
src/routes/+page.svelte
@@ -48,19 +48,19 @@
48
49
<div class="col-6">
50
<button
51
- class="btn {!textBoxToggle ? `btn-success` : `btn-danger`} w-100"
+ class="btn {!textBoxToggle ? `btn-outline-light` : `btn-light`} w-100"
52
onclick={() => (textBoxToggle = !textBoxToggle)}
53
>
54
- {!textBoxToggle ? 'Show' : 'Hide'} Text Input
+ {!textBoxToggle ? '✅' : '❎'} Text Input
55
</button>
56
</div>
57
58
59
60
- class="btn {!loadMenu ? `btn-secondary` : `btn-danger`} w-100"
+ class="btn {!loadMenu ? `btn-outline-light` : `btn-light`} w-100"
61
onclick={() => (loadMenu = !loadMenu)}
62
63
- {!textBoxToggle ? 'Load' : 'Unload'} External JSON
+ {!loadMenu ? '✅' : '❎'} External JSON
64
65
66
0 commit comments