Skip to content

Commit c1ffe71

Browse files
committed
Auto merge of #2286 - Turbo87:fix-width, r=locks
Revert "application: Simplify max width assignment" This reverts commit a5dcbce. Turns out this doesn't behave quite the same if the content demands more space than available 🙈 r? @locks
2 parents 2a0c392 + 5017161 commit c1ffe71

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

app/styles/application.module.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@ noscript {
2626
}
2727

2828
.application {
29-
max-width: 960px;
29+
width: 960px;
30+
@media only screen and (max-width: 960px) {
31+
width: 100%;
32+
}
3033
}
3134

3235
.main {

0 commit comments

Comments
 (0)