diff --git a/wp-content/themes/hello-elementor/assets/css/custom.css b/wp-content/themes/hello-elementor/assets/css/custom.css index 958aa0f..8b5a26a 100644 --- a/wp-content/themes/hello-elementor/assets/css/custom.css +++ b/wp-content/themes/hello-elementor/assets/css/custom.css @@ -34,4 +34,20 @@ #services-tiles .services-tile-2 { display: none; } +} +@media (max-width: 500px) { + #header-row-box > .e-con-inner { + flex-direction: column !important; + } + #header-row-box > .e-con-inner > div:nth-child(2) { + order: 3; + } +} + +#header-menu .elementor-nav-menu--dropdown ul.elementor-nav-menu { + padding-bottom: 20px; +} +#header-menu .elementor-nav-menu--dropdown ul.elementor-nav-menu li.menu-item a.elementor-item { + text-align: center; + justify-content: center; }/*# sourceMappingURL=custom.css.map */ \ No newline at end of file diff --git a/wp-content/themes/hello-elementor/assets/css/custom.css.map b/wp-content/themes/hello-elementor/assets/css/custom.css.map index 938ce5c..e8bcded 100644 --- a/wp-content/themes/hello-elementor/assets/css/custom.css.map +++ b/wp-content/themes/hello-elementor/assets/css/custom.css.map @@ -1 +1 @@ -{"version":3,"sources":["custom.scss","custom.css"],"names":[],"mappings":"AACC;EACC,kBAAA;EACA,YAAA;EACA,sBAAA;EACA,WAAA;ACAF;;ADIA;EACC,uBAAA;EACA,2BAAA;EACA,wBAAA;ACDD;;ADKC;EACC,gBAAA;EACA,SAAA;EACA,gBAAA;ACFF;ADOG;EACC;IACC,oCAAA;ECLH;EDOI;IACC,aAAA;ECLL;EDOI;IACC,aAAA;ECLL;EDOI;IACC,aAAA;ECLL;AACF;ADSG;EAjBD;IAkBE,aAAA;ECNF;AACF","file":"custom.css"} \ No newline at end of file +{"version":3,"sources":["custom.scss","custom.css"],"names":[],"mappings":"AACC;EACC,kBAAA;EACA,YAAA;EACA,sBAAA;EACA,WAAA;ACAF;;ADIA;EACC,uBAAA;EACA,2BAAA;EACA,wBAAA;ACDD;;ADKC;EACC,gBAAA;EACA,SAAA;EACA,gBAAA;ACFF;ADOG;EACC;IACC,oCAAA;ECLH;EDOI;IACC,aAAA;ECLL;EDOI;IACC,aAAA;ECLL;EDOI;IACC,aAAA;ECLL;AACF;ADSG;EAjBD;IAkBE,aAAA;ECNF;AACF;ADkBE;EADD;IAEE,iCAAA;ECfD;EDkBE;IACC,QAAA;EChBH;AACF;;ADuBE;EACC,oBAAA;ACpBH;ADuBI;EACC,kBAAA;EACA,uBAAA;ACrBL","file":"custom.css"} \ No newline at end of file diff --git a/wp-content/themes/hello-elementor/assets/css/custom.scss b/wp-content/themes/hello-elementor/assets/css/custom.scss index 723d2ab..c46af1f 100644 --- a/wp-content/themes/hello-elementor/assets/css/custom.scss +++ b/wp-content/themes/hello-elementor/assets/css/custom.scss @@ -49,3 +49,31 @@ } } } + +#header-row-box { + > .e-con-inner { + @media (max-width: 500px) { + flex-direction: column !important; + + > div { + &:nth-child(2) { + order: 3; + } + } + } + } +} +#header-menu { + .elementor-nav-menu--dropdown { + ul.elementor-nav-menu { + padding-bottom: 20px; + + li.menu-item { + a.elementor-item { + text-align: center; + justify-content: center; + } + } + } + } +}