mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
48 lines
679 B
Plaintext
48 lines
679 B
Plaintext
.van-notice-bar {
|
|
display: flex;
|
|
height: 40px;
|
|
padding: 0 15px;
|
|
font-size: 14px;
|
|
line-height: 24px;
|
|
align-items: center;
|
|
|
|
&--within-icon {
|
|
position: relative;
|
|
padding-right: 40px;
|
|
}
|
|
|
|
&__left-icon {
|
|
height: 18px;
|
|
min-width: 20px;
|
|
box-sizing: border-box;
|
|
|
|
> image {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
}
|
|
|
|
&__right-icon {
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 15px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
&__content-wrap {
|
|
position: relative;
|
|
height: 24px;
|
|
overflow: hidden;
|
|
flex: 1;
|
|
}
|
|
|
|
&__content {
|
|
position: absolute;
|
|
white-space: nowrap;
|
|
|
|
&.van-ellipsis {
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
}
|