UNPKG

onsenui

Version:

HTML5 Mobile Framework & UI Components

42 lines (39 loc) 761 B
/*~ name: Modal category: Modal elements: ons-modal markup: | <div class="modal"> <div class="modal__content"> Message Text </div> </div> */ .modal { @apply(--reset-container); @apply(--reset-base); @apply(--reset-box-model); @apply(--reset-font); overflow: hidden; background-color: var(--modal-background-color); position: absolute; left: 0; right: 0; top: 0; bottom: 0; width: 100%; height: 100%; display: table; z-index: 2147483647; } .modal__content { @apply(--reset-container); @apply(--reset-base); @apply(--reset-box-model); @apply(--reset-font); display: table-cell; vertical-align: middle; text-align: center; color: var(--modal-text-color); white-space: normal; }