summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/shared/components/modal/modal.component.scss
blob: ceeb614273b9fdeeefa8cdaa5d6be1f82fce658f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@use './src/styles/defaults/mixins';

.modal-header {
  @include mixins.hf;
  border-radius: 5px 5px 0 0;
}

::ng-deep cd-modal {
  .modal-footer {
    @include mixins.hf;
    border-radius: 0 0 5px 5px;
  }

  .modal-body {
    max-height: 70vh;
    overflow-x: hidden;
    overflow-y: auto;
  }
}

button.close {
  outline: none;
}