Add new container docs

This commit is contained in:
Jeremy Thomas
2020-09-27 23:50:12 +01:00
parent a84024765b
commit 85f61f2dfd
12 changed files with 256 additions and 63 deletions

View File

@@ -1864,7 +1864,7 @@ fieldset[disabled] .button {
}
.container.is-fluid {
max-width: none;
max-width: none !important;
padding-left: 32px;
padding-right: 32px;
width: 100%;
@@ -1877,25 +1877,25 @@ fieldset[disabled] .button {
}
@media screen and (max-width: 1215px) {
.container.is-widescreen {
.container.is-widescreen:not(.is-max-desktop) {
max-width: 1152px;
}
}
@media screen and (max-width: 1407px) {
.container.is-fullhd {
.container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen) {
max-width: 1344px;
}
}
@media screen and (min-width: 1216px) {
.container {
.container:not(.is-max-desktop) {
max-width: 1152px;
}
}
@media screen and (min-width: 1408px) {
.container {
.container:not(.is-max-desktop):not(.is-max-widescreen) {
max-width: 1344px;
}
}

File diff suppressed because one or more lines are too long