chore: button go click click

This commit is contained in:
Cory Dransfeldt 2024-02-27 16:48:41 -08:00
parent 349a0167c1
commit 8ee40e016c
No known key found for this signature in database
3 changed files with 14 additions and 4 deletions

View file

@ -4,14 +4,14 @@
{% endcapture %}
<style>{{ css }}</style>
<template id="theme-toggle-template">
<div class="theme__toggle">
<button class="theme__toggle">
<span class="light">
{% tablericon "sun" "Toggle light theme" %}
</span>
<span class="dark">
{% tablericon "moon" "Toggle dark theme" %}
</span>
</div>
</button>
</template>
<li class="client-side">
<theme-toggle></theme-toggle>

View file

@ -1,3 +1,8 @@
.theme__toggle {
background: transparent;
padding: 0;
}
.theme__toggle svg {
cursor: pointer;
}

View file

@ -75,6 +75,11 @@ async connectedCallback() {
The CSS for this is straightforward and contains a few vars specific to my implementation (related to icon color and SVG `stroke-width`):
```css
.theme__toggle {
background: transparent;
padding: 0;
}
.theme__toggle svg {
cursor: pointer;
}
@ -118,14 +123,14 @@ The final template that leverages the component looks like this:
{% endcapture %}
<style>{{ css }}</style>
<template id="theme-toggle-template">
<div class="theme__toggle">
<button class="theme__toggle">
<span class="light">
{% tablericon "sun" "Toggle light theme" %}
</span>
<span class="dark">
{% tablericon "moon" "Toggle dark theme" %}
</span>
</div>
</button>
</template>
<li class="client-side">
<theme-toggle></theme-toggle>