Files
ionic-framework/core/src/components/modal/modal.md.scss
Manu MA 235c6859d2 feat(modal): add css vars (#16605)
* feat(modal): add css vars

* add more css vars

* add docs

* add background

* fix e2e test
2018-12-06 15:36:09 +01:00

20 lines
410 B
SCSS

@import "./modal";
@import "./modal.md.vars";
// Material Design Modals
// --------------------------------------------------
@media only screen and (min-width: $modal-inset-min-width) and (min-height: $modal-inset-min-height-small) {
:host {
--border-radius: 2px;
--box-shadow: #{$modal-inset-box-shadow};
}
}
.modal-wrapper {
@include transform(translate3d(0, 40px, 0));
opacity: .01;
}