fix(settings): fix switch label cursor

This commit is contained in:
2026-07-28 20:08:37 +02:00
committed by jakob.scheid
parent c9cb0fce27
commit 12d8c4fa23
+5 -1
View File
@@ -42,7 +42,7 @@ const toggle = function toggle () {
<template>
<div class="switch-container" @click="toggle">
<label :for="switchId" :id="labelId">
<label :for="switchId" :id="labelId" class="switch-label">
{{ t(props.setting.i18n) }}
</label>
<div
@@ -66,6 +66,10 @@ const toggle = function toggle () {
cursor: pointer;
}
.switch-label {
cursor: inherit;
}
.switch-wrapper {
--point-size: 0.9em;
--padding: 2px;