mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-29 18:41:10 +02:00
* 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
18 lines
259 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|