Merge pull request #2623 from awesomerobot/master

making menu accessible on mobile when in desktop mode
This commit is contained in:
Sam 2014-08-06 13:37:02 +10:00
commit 4e73e27cdb
2 changed files with 24 additions and 0 deletions

View File

@ -24,6 +24,18 @@ html {font-size: 14px/19px;}
}
}
@media all
and (max-width : 570px) {
body {
min-width: 0;
}
.container,
.full-width {
min-width: 0;
}
.d-header .current-username a {display: none;}
}
header {
margin-bottom: 15px;
}

View File

@ -19,6 +19,18 @@
}
}
@media all
and (max-width : 570px) {
.d-header {
.current-username {
a {
display:none;
}
}
}
.extra-info-wrapper {display: none;}
}
#main {
position: relative;
}