Sidebar stays in floating mode when max-width is reached #342
-
Thanks for the great theme that works like a charm and has a very clean design 👍 However I am experiencing some minor glitches, like sidebars staying in "floating mode" independent of media width. The current rendered CSS looks like this: @media (max-width: 46em) {
.content {
padding: 0 1em
}
article div.sidebar {
float: none;
margin: 1rem 0;
width: 100%
}
} It should be @media (max-width: 46em) {
.content {
padding: 0 1em
}
article aside.sidebar {
float: none;
margin: 1rem 0;
width: 100%
}
} hence |
Beta Was this translation helpful? Give feedback.
Answered by
pradyunsg
Jul 31, 2022
Replies: 1 comment
-
Done in 2ffe906! Thanks for the detailed report here! ^>^ |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
pradyunsg
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Done in 2ffe906! Thanks for the detailed report here! ^>^