From 2d9069c4906db5a5f68cc4dc38733e08afcd7f4d Mon Sep 17 00:00:00 2001 From: Eliot Berriot <contact@eliotberriot.com> Date: Fri, 7 Jun 2019 11:22:13 +0200 Subject: [PATCH] Fixed menu hidden on small screens --- src/App.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.vue b/src/App.vue index f03acc5..104caa9 100644 --- a/src/App.vue +++ b/src/App.vue @@ -3,8 +3,8 @@ <header> <nav> <div class="nav-wrapper container"> - <router-link class="brand-logo" to="/">Retribute App</router-link> - <ul id="nav-mobile" class="right hide-on-med-and-down"> + <router-link class="brand-logo left" to="/">Retribute App</router-link> + <ul id="nav-mobile" class="right"> <li> <router-link to="/">Home</router-link> </li> -- GitLab