Skip to content

Instantly share code, notes, and snippets.

@jdnichollsc
Created June 21, 2015 06:10
Show Gist options
  • Save jdnichollsc/1b0112dfdca4b7f06fbe to your computer and use it in GitHub Desktop.
Save jdnichollsc/1b0112dfdca4b7f06fbe to your computer and use it in GitHub Desktop.
Change size of modal dialog in Ionic Framework
<ion-modal-view class="mymodal">
...
</ion-modal-view>
@media (min-width: 680px) {
.mymodal {
width: 90%;
height: 90%;
top: 5%;
left: 5%;
right: 5%;
bottom: 5%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment