Do not expand to fixed pixel size on mobile

This commit is contained in:
Johannes Zellner
2017-08-23 16:57:34 +02:00
parent 04c127b78d
commit 103f8db8cb

View File

@@ -142,13 +142,17 @@ html, body {
}
.content {
width: 720px;
width: 100%;
max-width: 720px;
margin: 0 auto;
&.content-large {
width: 970px;
max-width: 970px;
@media(min-width:768px) {
width: 720px;
&.content-large {
width: 970px;
max-width: 970px;
}
}
}