mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
Merge pull request #2623 from awesomerobot/master
making menu accessible on mobile when in desktop mode
This commit is contained in:
commit
4e73e27cdb
@ -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 {
|
header {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
}
|
}
|
||||||
|
@ -19,6 +19,18 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media all
|
||||||
|
and (max-width : 570px) {
|
||||||
|
.d-header {
|
||||||
|
.current-username {
|
||||||
|
a {
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.extra-info-wrapper {display: none;}
|
||||||
|
}
|
||||||
|
|
||||||
#main {
|
#main {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user