NEWFEATURE-161

#comments Adds max width settings to container in prep for new width editor settings.
This commit is contained in:
Jonathan Preston 2016-03-17 16:58:22 -07:00
parent f422379780
commit 13fd9dd326

View File

@ -190,6 +190,20 @@ Container
max-width: 1200px; max-width: 1200px;
} }
/* For devices larger than 400px */
@media (min-width: 400px) {
.container.container {
max-width: 85%;
}
}
/* For devices larger than 550px */
@media (min-width: 550px) {
.container.container {
max-width: 80%;
}
}
/* ===================================================================================================================== /* =====================================================================================================================
Forms Forms
===================================================================================================================== */ ===================================================================================================================== */