mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
* perf: remove CSS variables polyfill * style: fix missing calc value * perf: reduce some useless css vars
46 lines
917 B
Plaintext
46 lines
917 B
Plaintext
@import '../common/style/var.less';
|
|
|
|
.van-notify {
|
|
text-align: center;
|
|
word-wrap: break-word;
|
|
padding: var(--notify-padding, @notify-padding);
|
|
font-size: var(--notify-font-size, @notify-font-size);
|
|
line-height: var(--notify-line-height, @notify-line-height);
|
|
|
|
&__container {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
}
|
|
|
|
&--primary {
|
|
background-color: var(
|
|
--notify-primary-background-color,
|
|
@notify-primary-background-color
|
|
);
|
|
}
|
|
|
|
&--success {
|
|
background-color: var(
|
|
--notify-success-background-color,
|
|
@notify-success-background-color
|
|
);
|
|
}
|
|
|
|
&--danger {
|
|
background-color: var(
|
|
--notify-danger-background-color,
|
|
@notify-danger-background-color
|
|
);
|
|
}
|
|
|
|
&--warning {
|
|
background-color: var(
|
|
--notify-warning-background-color,
|
|
@notify-warning-background-color
|
|
);
|
|
}
|
|
}
|