f5320908 by Jeff Balicki

fix

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 978d5c88
......@@ -19463,6 +19463,11 @@ ul.sf_date_field .sf-datepicker {
#main .entry-content {
position: relative;
}
@media only screen and (max-width: 67.063rem) {
#main .entry-content {
width: calc(100vw - 48px);
}
}
.entry-footer {
display: none;
......@@ -20319,7 +20324,7 @@ ul.sf_date_field .sf-datepicker {
@media only screen and (max-width: 67.063rem) {
.carousel:not(.is-admin) {
left: 0%;
width: 100vw;
width: calc(100vw - 24px);
padding: 0rem 0rem;
}
}
......@@ -21209,6 +21214,7 @@ ul.sf_date_field .sf-datepicker {
@media only screen and (max-width: 67.063rem) {
.news-and-stories-block {
display: block;
width: calc(100vw - 48px);
}
}
.news-and-stories-block .post-list-left-col {
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
......@@ -9,7 +9,7 @@
height: 280px;
@media only screen and (max-width:67.063rem) {
left: 0%;
width: 100vw;
width: calc(100vw - 24px);
padding: 0rem 0rem;
}
......
......@@ -3,6 +3,9 @@
.entry-content{
position: relative;
@media only screen and (max-width:67.063rem) {
width: calc(100vw - 48px);
}
}
}
......
......@@ -6,6 +6,7 @@
margin:24px 0;
@media only screen and (max-width:67.063rem) {
display: block;
width: calc(100vw - 48px);
}
.post-list-left-col {
flex-basis: 50%;
......