mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-11 12:17:59 +03:00
28 lines
452 B
SCSS
28 lines
452 B
SCSS
// Modals
|
|
// https://www.google.com/design/spec/components/dialogs.html#dialogs-specs
|
|
|
|
.modal-content {
|
|
@include shadow-z-5();
|
|
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;
|
|
}
|
|
}
|
|
}
|