fix(settings): fix switch label cursor

This commit is contained in:
2026-07-22 13:36:34 +02:00
parent 129d380f56
commit 2a1ebcf343
+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;