mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(NoticeBar): remove default icon size (#4692)
This commit is contained in:
parent
8aecb0e843
commit
79820f7f45
@ -126,3 +126,19 @@
|
|||||||
| 类名 | 说明 |
|
| 类名 | 说明 |
|
||||||
| ------------ | ------------ |
|
| ------------ | ------------ |
|
||||||
| custom-class | 根节点样式类 |
|
| custom-class | 根节点样式类 |
|
||||||
|
|
||||||
|
### 样式变量
|
||||||
|
|
||||||
|
组件提供了下列 CSS 变量,可用于自定义样式,使用方法请参考 [ConfigProvider 组件](#/config-provider)。
|
||||||
|
|
||||||
|
| 名称 | 默认值 | 描述 |
|
||||||
|
| --- | --- | --- |
|
||||||
|
| --notice-bar-height | _40px_ | - |
|
||||||
|
| --notice-bar-padding | _0 var(--van-padding-md)_ | - |
|
||||||
|
| --notice-bar-wrapable-padding | _var(--van-padding-xs) var(--van-padding-md)_ | - |
|
||||||
|
| --notice-bar-text-color | _var(--van-orange-dark)_ | - |
|
||||||
|
| --notice-bar-font-size | _var(--van-font-size-md)_ | - |
|
||||||
|
| --notice-bar-line-height | _24px_ | - |
|
||||||
|
| --notice-bar-background-color | _var(--van-orange-light)_ | - |
|
||||||
|
| --notice-bar-icon-size | _16px_ | - |
|
||||||
|
| --notice-bar-icon-min-width | _24px_ | - |
|
||||||
|
@ -9,7 +9,6 @@
|
|||||||
>
|
>
|
||||||
<van-icon
|
<van-icon
|
||||||
wx:if="{{ leftIcon }}"
|
wx:if="{{ leftIcon }}"
|
||||||
size="16px"
|
|
||||||
name="{{ leftIcon }}"
|
name="{{ leftIcon }}"
|
||||||
class="van-notice-bar__left-icon"
|
class="van-notice-bar__left-icon"
|
||||||
/>
|
/>
|
||||||
|
@ -22,7 +22,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
>
|
>
|
||||||
<wx-view
|
<wx-view
|
||||||
class="custom-class van-icon van-icon-volume-o"
|
class="custom-class van-icon van-icon-volume-o"
|
||||||
style="font-size:16px"
|
style=""
|
||||||
bind:tap="onClick"
|
bind:tap="onClick"
|
||||||
/>
|
/>
|
||||||
</van-icon>
|
</van-icon>
|
||||||
@ -225,7 +225,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
>
|
>
|
||||||
<wx-view
|
<wx-view
|
||||||
class="custom-class van-icon van-icon-info-o"
|
class="custom-class van-icon van-icon-info-o"
|
||||||
style="font-size:16px"
|
style=""
|
||||||
bind:tap="onClick"
|
bind:tap="onClick"
|
||||||
/>
|
/>
|
||||||
</van-icon>
|
</van-icon>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user