426f05cd899e1284245cbd5170de575ac1df83b0
[sdc.git] / openecomp-ui / resources / scss / components / _notifications.scss
1
2 .notification-modal {
3
4   .modal-content {
5     .modal-header {
6       padding: 15px 10px 10px;
7       .modal-title {
8         @extend .heading-5-medium;
9       }
10     }
11     .modal-body {
12       padding: 30px 15px;
13       @extend .body-1-medium;
14     }
15   }
16
17   &.danger {
18     .modal-content .modal-header {
19       border-top: 3px solid $red;
20     }
21   }
22
23   &.warning {
24     .modal-content .modal-header {
25       border-top: 3px solid $yellow;
26     }
27   }
28
29 }