Skip to content

Commit

Permalink
properly fix the width of the question content?
Browse files Browse the repository at this point in the history
The previous change didn't account for the sidebar.
  • Loading branch information
christianp committed Oct 24, 2024
1 parent d72fb1f commit 44d26a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions themes/default/files/resources/exam.css
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,8 @@ body.navigate-menu.show-nav #everything > #topNav {
@media screen {
#everything > main > #questionContainer,
#everything > main > #infoDisplay {
width: 1170px;
max-width: 100svw;
width: 100%;
max-width: min(1170px,100svw);
max-height: 100%;
}
#everything > main > #questionContainer {
Expand Down

0 comments on commit 44d26a7

Please sign in to comment.