style(Switch): adjust width

This commit is contained in:
chenjiahan 2022-02-17 15:36:23 +08:00
parent 2acd47b5ee
commit 73788f9e88
3 changed files with 3 additions and 3 deletions

View File

@ -138,7 +138,7 @@ The component provides the following CSS variables, which can be used to customi
| Name | Default Value | Description |
| --- | --- | --- |
| --van-switch-size | _26px_ | - |
| --van-switch-width | _calc(2em + 4px)_ | - |
| --van-switch-width | _calc(1.8em + 4px)_ | - |
| --van-switch-height | _calc(1em + 4px)_ | - |
| --van-switch-node-size | _1em_ | - |
| --van-switch-node-background | _var(--van-white)_ | - |

View File

@ -150,7 +150,7 @@ import type { SwitchProps } from 'vant';
| 名称 | 默认值 | 描述 |
| ----------------------------- | --------------------------------- | ---- |
| --van-switch-size | _26px_ | - |
| --van-switch-width | _calc(2em + 4px)_ | - |
| --van-switch-width | _calc(1.8em + 4px)_ | - |
| --van-switch-height | _calc(1em + 4px)_ | - |
| --van-switch-node-size | _1em_ | - |
| --van-switch-node-background | _var(--van-white)_ | - |

View File

@ -1,6 +1,6 @@
body {
--van-switch-size: 26px;
--van-switch-width: calc(2em + 4px);
--van-switch-width: calc(1.8em + 4px);
--van-switch-height: calc(1em + 4px);
--van-switch-node-size: 1em;
--van-switch-node-background: var(--van-white);