fix(NoticeBar): remove default icon size (#4692)

This commit is contained in:
nemo-shen 2021-12-23 10:07:32 +08:00 committed by GitHub
parent 8aecb0e843
commit 79820f7f45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 3 deletions

View File

@ -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_ | - |

View File

@ -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"
/> />

View File

@ -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>