blob: 5b10dee0eefdafb90ac01fe11b0645c6961b6afa (
plain)
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
34
35
|
.notification-modal {
.modal-content {
.modal-header {
padding: 15px 10px 10px;
.modal-title {
@extend .heading-5-semibold;
}
}
.modal-body {
padding: 30px 15px;
@extend .body-1-semibold;
}
}
&.danger {
.modal-content .modal-header {
border-top: 3px solid $red;
}
}
&.negative {
.modal-content .modal-header {
border-top: 3px solid $red;
}
}
&.warning {
.modal-content .modal-header {
border-top: 3px solid $yellow;
}
}
}
|