:root {
}
/*~
name: Toast
category: Toast
markup: |
Message Message Message Message Message Message
*/
.toast {
@apply(--reset-font);
position: absolute;
z-index: 2;
left: 8px;
right: 8px;
bottom: 0;
margin: 8px 0;
border-radius: 8px;
background-color: var(--toast-background-color);
display: flex;
min-height: 48px;
line-height: 1.5;
box-sizing: border-box;
padding: 16px 16px;
}
.toast__message {
font-size: 14px;
color: var(--toast-text-color);
flex-grow: 1;
text-align: left;
margin: 0 16px 0 0;
white-space: normal;
}
.toast__button {
font-size: 14px;
color: var(--toast-button-text-color);
flex-grow: 0;
appearance: none;
border: none;
background-color: transparent;
cursor: default;
text-transform: uppercase;
}
.toast__button:focus {
outline: none;
}
.toast__button:active {
opacity: 0.4;
}
/*~
name: Material Toast
category: Toast
markup: |
Message Message Message Message Message Message
*/
.toast--material {
left: 0;
right: 0;
bottom: 0;
margin: 0;
background-color: var(--material-toast-background-color);
border-radius: 0;
padding: 16px 24px;
}
.toast--material__message {
@apply(--material-font);
margin: 0 24px 0 0;
}
.toast--material__button {
@apply(--material-font);
color: var(--material-toast-button-text-color);
}