making menu accessible on mobile when in desktop mode

This commit is contained in:
Kris Aubuchon 2014-08-05 23:31:28 -04:00
parent df30cb43ec
commit c3b96d720f
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;
}