blob: 5b10dee0eefdafb90ac01fe11b0645c6961b6afa [file] [log] [blame]
Michael Landoefa037d2017-02-19 12:57:33 +02001
2.notification-modal {
3
4 .modal-content {
5 .modal-header {
6 padding: 15px 10px 10px;
7 .modal-title {
Avi Zivb8e2faf2017-07-18 19:45:38 +03008 @extend .heading-5-semibold;
Michael Landoefa037d2017-02-19 12:57:33 +02009 }
10 }
11 .modal-body {
12 padding: 30px 15px;
Avi Zivb8e2faf2017-07-18 19:45:38 +030013 @extend .body-1-semibold;
Michael Landoefa037d2017-02-19 12:57:33 +020014 }
15 }
16
17 &.danger {
18 .modal-content .modal-header {
19 border-top: 3px solid $red;
20 }
Avi Ziv61070c92017-07-26 17:37:57 +030021 }
22
23 &.negative {
24 .modal-content .modal-header {
25 border-top: 3px solid $red;
26 }
Michael Landoefa037d2017-02-19 12:57:33 +020027 }
28
29 &.warning {
30 .modal-content .modal-header {
31 border-top: 3px solid $yellow;
32 }
33 }
34
35}