Files
2016-04-18 12:49:38 -07:00

44 lines
747 B
SCSS

@import "../../globals.ios";
// Action Sheet
// --------------------------------------------------
$toast-width: 100% !default;
$toast-max-width: 700px !default;
ion-toast {
position: absolute;
top: 0;
left: 0;
z-index: $z-index-overlay;
display: block;
width: $toast-width;
height: $toast-width;
}
.toast-container {
display: flex;
align-items: center;
button {
font-size: 1.5rem;
padding: 19px 16px 17px;
}
}
.toast-message {
flex: 1;
}
.toast-wrapper {
bottom: 0;
display: block;
left: 0;
margin: auto;
max-width: $toast-max-width;
position: absolute;
right: 0;
transform: translate3d(0, 100%, 0);
z-index: $z-index-overlay-wrapper;
}