fix bug
This commit is contained in:
parent
397c7a5307
commit
81b0ba60df
8 changed files with 42 additions and 18 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue