Skip to content

Instantly share code, notes, and snippets.

@nextab
Created February 13, 2023 21:28
Show Gist options
  • Select an option

  • Save nextab/f16f2420010a9035146cb5ec6d62df95 to your computer and use it in GitHub Desktop.

Select an option

Save nextab/f16f2420010a9035146cb5ec6d62df95 to your computer and use it in GitHub Desktop.
/* #region max-width 980px */
@media only screen and ( max-width: 980px ) {
header#main-header .et_mobile_menu {
left: 0;
max-height: calc(100vh - 95px);
overflow: scroll;
position: fixed;
top: 95px !important;
width: 100%;
}
body.mobile_nav-opened {
overflow: hidden;
}
body.admin-bar header#main-header .et_mobile_menu {
max-height: calc(100vh - 125px);
top: 125px !important;
}
}
/* #endregion 980px */
/* #region max-width 782px */
@media only screen and (max-width: 782px) {
body.admin-bar header#main-header .et_mobile_menu {
max-height: calc(100vh - 140px);
top: 140px !important;
}
}
/* #endregion 782px */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment