vault/ui/app/styles/components/global-flash.scss
Matthew Irish ec58e39598
UI - wrapping lookup path (#4644)
* add creation path to the display on wrapping lookup

* fix z-index issue with console-panel and the subnav on smaller viewports

* use position:fixed for all of the global flash stuff

* tweaks for the console on mobile devices
2018-05-28 21:50:37 -05:00

18 lines
259 B
SCSS

.global-flash {
position: fixed;
max-width: 450px;
width: 95%;
bottom: 0;
left: 0;
margin: 10px;
z-index: 1;
.notification {
box-shadow: $box-shadow-high;
margin: 20px;
@include until($desktop) {
margin: 1rem 0;
}
}
}