stylesheets: ensure that fixed flash errors are presented above the map

This commit is contained in:
Pierre de La Morinerie 2019-01-24 17:32:11 +00:00
parent 00d3cbc182
commit c6fdbe8256
2 changed files with 6 additions and 0 deletions

View file

@ -7,3 +7,6 @@ $default-padding: 2 * $default-spacer;
// layouts
$two-columns-padding: 60px;
$two-columns-breakpoint: $page-width + (2 * $two-columns-padding);
// z-order
$alert-z-index: 100;

View file

@ -1,4 +1,5 @@
@import "colors";
@import "constants";
.alert {
padding: 15px;
@ -28,4 +29,6 @@
width: 200px;
top: 10px;
border-radius: 10px;
// Ensure fixed flash messages are above `position: absolute` elements (like maps)
z-index: $alert-z-index;
}