25 lines
392 B
SCSS
25 lines
392 B
SCSS
.global-flash {
|
|
position: fixed;
|
|
@include until($desktop) {
|
|
position: -webkit-sticky;
|
|
position: sticky;
|
|
top: 0;
|
|
bottom: auto;
|
|
margin: 0 auto;
|
|
width: 95%;
|
|
}
|
|
width: 450px;
|
|
bottom: 0;
|
|
left: 0;
|
|
margin: 10px;
|
|
z-index: 1;
|
|
|
|
.notification {
|
|
box-shadow: $box-shadow-high;
|
|
margin: 20px;
|
|
@include until($desktop) {
|
|
margin: 1rem 0;
|
|
}
|
|
}
|
|
}
|