X-Git-Url: https://git.auder.net/pieces/Cwda/n_white_knight.svg?a=blobdiff_plain;f=client%2Fsrc%2FApp.vue;h=77fed7af05d671688b9245a78cf9dbf37d22776a;hb=c547fbfbf65659b98f4f1bfba4718c685ec281f8;hp=a9c1d4cce5b87ae70bc08f5926eabcdeb530a967;hpb=92a523d1a74cbabcfd7d6ade45f25fa622815f0b;p=vchess.git diff --git a/client/src/App.vue b/client/src/App.vue index a9c1d4cc..77fed7af 100644 --- a/client/src/App.vue +++ b/client/src/App.vue @@ -8,12 +8,12 @@ .row .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 // Menu (top of page): - // Left: hall, variants, mygames, problems + // Left: hall, variants, mygames, forum (ext. link) // Right: usermenu, settings, flag nav label.drawer-toggle(for="drawerControl") input#drawerControl.drawer(type="checkbox") - #menuBar + #menuBar(@click="hideDrawer") label.drawer-close(for="drawerControl") #leftMenu router-link(to="/") @@ -22,8 +22,8 @@ | {{ st.tr["Variants"] }} router-link(to="/mygames") | {{ st.tr["My games"] }} - router-link(to="/problems") - | {{ st.tr["Problems"] }} + a(href="https://forum.vchess.club") + | {{ st.tr["Forum"] }} #rightMenu .clickable(onClick="doClick('modalUser')") | {{ st.user.id > 0 ? "Update" : "Login" }} @@ -38,8 +38,6 @@ router-link.menuitem(to="/about") {{ st.tr["About"] }} p.clickable(onClick="doClick('modalContact')") | {{ st.tr["Contact"] }} - // TODO: add only the necessary icons to mini-css custom build - //script(src="//unpkg.com/feather-icons") @@ -131,13 +140,19 @@ nav width: 36px height: 27px -// TODO: drawer, until 600px wide OK (seemingly) -// After, zone where left and right just go on top of another -// Then, on narrow screen put everything on one line +@media screen and (max-width: 767px) + nav + border: none + [type="checkbox"].drawer+* right: -767px +#menuBar + label.drawer-close + top: 50px + footer + border: 1px solid #ddd //background-color: #000033 font-size: 1rem width: 100% @@ -151,9 +166,14 @@ footer margin: 0 10px 0 0 &:link color: #2c3e50 - &:hover + &:visited, &:hover + color: #2c3e50 text-decoration: none & > p display: inline-block margin: 0 0 0 10px + +@media screen and (max-width: 767px) + footer + border: none