moved z-index values to _globals
This commit is contained in:
parent
e804ffdecf
commit
83f8a83605
|
@ -3,6 +3,9 @@ $bp__m: 40em;
|
|||
// layout optomised for larger screens
|
||||
$bp__layout: $bp__m;
|
||||
|
||||
$z-index__page: 50;
|
||||
$z-index__menu: 100;
|
||||
|
||||
$site-menu__header-width: 3rem;
|
||||
$site-menu__header-height: 3rem;
|
||||
|
||||
|
|
|
@ -45,13 +45,13 @@ export default {
|
|||
}
|
||||
|
||||
.page {
|
||||
z-index: 50;
|
||||
z-index: $z-index__page;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.menu {
|
||||
z-index: 100;
|
||||
z-index: $z-index__menu;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue