38 lines
917 B
CSS
38 lines
917 B
CSS
/* Off canvas close button fix */
|
|
.wp-block-navigation__responsive-container.is-menu-open {
|
|
padding:20px !important;
|
|
}
|
|
|
|
|
|
/* Patterns fix */
|
|
|
|
.blog-two-columns .wp-block-post-featured-image {
|
|
min-width:40% !important;
|
|
}
|
|
@media only screen and (max-width: 750px) {
|
|
.blog-two-columns .wp-block-post-featured-image {
|
|
min-width:100% !important;
|
|
}
|
|
.blog-two-columns .has-post-thumbnail .wp-block-group{
|
|
-ms-flex-wrap:wrap !important;
|
|
flex-wrap:wrap !important;
|
|
}
|
|
}
|
|
@media only screen and (min-width: 600px) {
|
|
.author-introduction-pattern .wp-block-media-text .wp-block-media-text__content {
|
|
padding:0 4%;
|
|
}
|
|
}
|
|
@media only screen and (max-width: 600px) {
|
|
.author-introduction-pattern .wp-block-media-text {
|
|
text-align:center;
|
|
}
|
|
.author-introduction-pattern .wp-block-media-text__media{
|
|
text-align:center;
|
|
}
|
|
.author-introduction-pattern .wp-block-media-text__media img{
|
|
max-width: 100px;
|
|
}
|
|
|
|
}
|