啊鑫
2025-07-17 eaa506e57403d1b8502f16ca5dd6e82c347724d0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
@import '../style/var';
 
.van-notify {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: @notify-padding;
  color: @notify-text-color;
  font-size: @notify-font-size;
  line-height: @notify-line-height;
 
  // allow newline charactor
  white-space: pre-wrap;
  text-align: center;
  word-wrap: break-word;
 
  &--primary {
    background-color: @notify-primary-background-color;
  }
 
  &--success {
    background-color: @notify-success-background-color;
  }
 
  &--danger {
    background-color: @notify-danger-background-color;
  }
 
  &--warning {
    background-color: @notify-warning-background-color;
  }
}