This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-09-25 17:13:44 +07:00
parent 397c7a5307
commit 81b0ba60df
8 changed files with 42 additions and 18 deletions

View file

@ -414,6 +414,7 @@ watch(
</template>
<style scoped lang="scss">
@use "sass:math";
.mt {
margin-top: 10px;
}
@ -433,7 +434,7 @@ $toggle-control-ease: ease-in;
// These are our computed variables
// change at your own risk.
$toggle-radius: ($toggle-height / 2);
$toggle-radius: math.div($toggle-height, 2);
$toggle-control-size: $toggle-height - ($toggle-gutter * 2);
.toggle-control {

View file

@ -346,6 +346,7 @@ watch(
</template>
<style scoped lang="scss">
@use "sass:math";
.mt {
margin-top: 10px;
}
@ -365,7 +366,7 @@ $toggle-control-ease: ease-in;
// These are our computed variables
// change at your own risk.
$toggle-radius: ($toggle-height / 2);
$toggle-radius: math.div($toggle-height, 2);
$toggle-control-size: $toggle-height - ($toggle-gutter * 2);
.toggle-control {