e023f7f7 by Jeff Balicki

fix

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 822c9afc
......@@ -15492,9 +15492,9 @@ ol li ol {
margin-bottom: -170px;
}
}
@media screen and (max-width: 900px) {
@media screen and (max-width: 1050px) {
.wp-block-group.home-move-up {
margin-top: -100px;
margin-top: -50px;
}
}
@media screen and (max-width: 480px) {
......@@ -15503,6 +15503,12 @@ ol li ol {
margin-bottom: 0px;
}
}
@media screen and (max-width: 1050px) {
.wp-block-group.home-move-up .wp-block-columns {
display: flex;
flex-direction: column;
}
}
.wp-block-group.home-move-up .wp-block-column:first-of-type {
padding-left: 45px;
display: flex;
......
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.
......@@ -504,13 +504,19 @@ ul:not(.navbar-nav):not(.menu){
@media screen and (max-width: 1355px) {
margin-bottom: -170px;
}
@media screen and (max-width: 900px) {
margin-top: -100px;
@media screen and (max-width: 1050px) {
margin-top: -50px;
}
@media screen and (max-width: 480px) {
margin-top: 100px;
margin-bottom: 0px;
}
.wp-block-columns{
@media screen and (max-width: 1050px) {
display: flex;
flex-direction: column;
}
}
.wp-block-column:first-of-type{
padding-left: 45px;
display: flex;
......