Feat(settings): add renderer for settings configuration #142

Merged
jakob.scheid merged 88 commits from feature/settings-renderer into main 2026-07-28 20:14:50 +02:00
Showing only changes of commit 12d8c4fa23 - Show all commits
+5 -1
View File
@@ -42,7 +42,7 @@ const toggle = function toggle () {
<template> <template>
<div class="switch-container" @click="toggle"> <div class="switch-container" @click="toggle">
<label :for="switchId" :id="labelId"> <label :for="switchId" :id="labelId" class="switch-label">
{{ t(props.setting.i18n) }} {{ t(props.setting.i18n) }}
</label> </label>
<div <div
@@ -66,6 +66,10 @@ const toggle = function toggle () {
cursor: pointer; cursor: pointer;
} }
.switch-label {
cursor: inherit;
}
.switch-wrapper { .switch-wrapper {
--point-size: 0.9em; --point-size: 0.9em;
--padding: 2px; --padding: 2px;