responsive layout: move sidebars beneath main content.
Incidentally fixes bug with notes being mispositioned on top of the sidebar because the sidebar was declared as float: left.
This commit is contained in:
@@ -13,8 +13,21 @@
|
||||
display: none;
|
||||
}
|
||||
|
||||
aside {
|
||||
font-size: 18pt;
|
||||
div#page {
|
||||
> div /* div#c-$controller */ {
|
||||
> div /* div#a-$action */ {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
/* Move #sidebar below #content. */
|
||||
> aside#sidebar {
|
||||
font-size: 1.5em;
|
||||
float: none;
|
||||
width: auto;
|
||||
order: 2;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#maintoggle {
|
||||
|
||||
Reference in New Issue
Block a user