summaryrefslogtreecommitdiff
path: root/templates/assets/bootstrap-material-design/scss/_modal.scss
blob: 152591e3eea92b73e6a4c71e3c9c0bcfaa3b5c55 (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
// Modals
// https://www.google.com/design/spec/components/dialogs.html#dialogs-specs

.modal-content {
  border: 0;
  border-radius: $border-radius;

  .modal-header {
    padding: 24px 24px 0;
    border-bottom: 0;
  }
  .modal-body {
    padding: 20px 24px 24px;
  }
  .modal-footer {
    padding: 8px 8px 8px 24px;
    border-top: 0;
    .btn {
      margin: 0;
    }

    .btn + .btn {
      margin-left: 8px;
    }
  }
}