mdb-ui-kit/scss/_modal.scss

28 lines
452 B
SCSS
Raw Normal View History

// Modals
2015-12-22 01:06:40 +03:00
// https://www.google.com/design/spec/components/dialogs.html#dialogs-specs
.modal-content {
@include shadow-z-5();
border: 0;
border-radius: $border-radius;
2015-12-22 01:06:40 +03:00
.modal-header {
padding: 24px 24px 0;
border-bottom: 0;
}
.modal-body {
2015-12-22 01:06:40 +03:00
padding: 20px 24px 24px;
}
.modal-footer {
2015-12-22 01:06:40 +03:00
padding: 8px 8px 8px 24px;
border-top: 0;
2015-12-22 01:06:40 +03:00
.btn {
margin: 0;
}
2015-12-22 01:06:40 +03:00
.btn + .btn {
margin-left: 8px;
}
}
}