e023f7f7 by Jeff Balicki

fix

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 822c9afc
...@@ -15492,9 +15492,9 @@ ol li ol { ...@@ -15492,9 +15492,9 @@ ol li ol {
15492 margin-bottom: -170px; 15492 margin-bottom: -170px;
15493 } 15493 }
15494 } 15494 }
15495 @media screen and (max-width: 900px) { 15495 @media screen and (max-width: 1050px) {
15496 .wp-block-group.home-move-up { 15496 .wp-block-group.home-move-up {
15497 margin-top: -100px; 15497 margin-top: -50px;
15498 } 15498 }
15499 } 15499 }
15500 @media screen and (max-width: 480px) { 15500 @media screen and (max-width: 480px) {
...@@ -15503,6 +15503,12 @@ ol li ol { ...@@ -15503,6 +15503,12 @@ ol li ol {
15503 margin-bottom: 0px; 15503 margin-bottom: 0px;
15504 } 15504 }
15505 } 15505 }
15506 @media screen and (max-width: 1050px) {
15507 .wp-block-group.home-move-up .wp-block-columns {
15508 display: flex;
15509 flex-direction: column;
15510 }
15511 }
15506 .wp-block-group.home-move-up .wp-block-column:first-of-type { 15512 .wp-block-group.home-move-up .wp-block-column:first-of-type {
15507 padding-left: 45px; 15513 padding-left: 45px;
15508 display: flex; 15514 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){ ...@@ -504,13 +504,19 @@ ul:not(.navbar-nav):not(.menu){
504 @media screen and (max-width: 1355px) { 504 @media screen and (max-width: 1355px) {
505 margin-bottom: -170px; 505 margin-bottom: -170px;
506 } 506 }
507 @media screen and (max-width: 900px) { 507 @media screen and (max-width: 1050px) {
508 margin-top: -100px; 508 margin-top: -50px;
509 } 509 }
510 @media screen and (max-width: 480px) { 510 @media screen and (max-width: 480px) {
511 margin-top: 100px; 511 margin-top: 100px;
512 margin-bottom: 0px; 512 margin-bottom: 0px;
513 } 513 }
514 .wp-block-columns{
515 @media screen and (max-width: 1050px) {
516 display: flex;
517 flex-direction: column;
518 }
519 }
514 .wp-block-column:first-of-type{ 520 .wp-block-column:first-of-type{
515 padding-left: 45px; 521 padding-left: 45px;
516 display: flex; 522 display: flex;
......