web: basic switcher component & mute mode button

This commit is contained in:
wukko
2024-06-16 15:30:14 +06:00
parent 6e8abc62aa
commit 38eebfb480
4 changed files with 87 additions and 41 deletions

View File

@@ -0,0 +1,35 @@
<script lang="ts">
export let settingId: string;
</script>
<div id="switcher-{settingId}" class="switcher">
<slot></slot>
</div>
<style>
.switcher {
display: flex;
width: auto;
flex-direction: row;
flex-wrap: nowrap;
scrollbar-width: none;
}
.switcher :global(.button:first-child) {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.switcher :global(.button:last-child) {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.switcher > :global(:not(.button:first-child):not(.button:last-child)) {
border-radius: 0;
}
.switcher > :global(:not(.button:first-child)) {
margin-left: -1.5px; /* hack to get rid of double border in a list of switches */
}
</style>