mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
* feat(modal): add css vars * add more css vars * add docs * add background * fix e2e test
20 lines
410 B
SCSS
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;
|
|
}
|