summaryrefslogtreecommitdiffstats
path: root/openecomp-ui/resources/scss/components/_notifications.scss
blob: 426f05cd899e1284245cbd5170de575ac1df83b0 (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
.notification-modal {

  .modal-content {
    .modal-header {
      padding: 15px 10px 10px;
      .modal-title {
        @extend .heading-5-medium;
      }
    }
    .modal-body {
      padding: 30px 15px;
      @extend .body-1-medium;
    }
  }

  &.danger {
    .modal-content .modal-header {
      border-top: 3px solid $red;
    }
  }

  &.warning {
    .modal-content .modal-header {
      border-top: 3px solid $yellow;
    }
  }

}