Browse Source

fix(MainHeader): Should not have background color in nightmode on mobile when hiding logged out

Owen Diffey 3 years ago
parent
commit
61c9bf242b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frontend/src/components/layout/MainHeader.vue

+ 1 - 1
frontend/src/components/layout/MainHeader.vue

@@ -177,7 +177,7 @@ export default {
 	}
 
 	@media screen and (max-width: 768px) {
-		.nav-menu {
+		.nav:not(.hide-logged-out) .nav-menu {
 			background-color: var(--dark-grey-3) !important;
 		}
 	}