fix nav toggle on mobile screens

This commit is contained in:
Jonas Heinrich 2020-11-09 10:59:44 +01:00
parent 1337754515
commit 199a478706

View File

@ -257,13 +257,9 @@ export default {
<style>
.app-navigation-toggle {
display: none;
}
.app-content-vue {
padding-left: 5px;
}
/* Make breadcrumbs sticky and intransparent.
Move them to the right and show navigation
toggle on smaller screens */
.breadcrumbs {
background-color: var(--color-main-background-translucent);
@ -272,6 +268,16 @@ export default {
position: -webkit-sticky;
top: 50px;
padding-bottom: 5px;
margin-left: 35px;
}
@media only screen and (min-width: 1024px) {
.app-navigation-toggle {
display: none;
}
.breadcrumbs {
margin-left: 0px;
}
}
</style>