Skip to content

Instantly share code, notes, and snippets.

@ramjamx
Last active June 26, 2024 15:04
Show Gist options
  • Save ramjamx/5e83ade8399b26da770aa37bf7a75cc3 to your computer and use it in GitHub Desktop.
Save ramjamx/5e83ade8399b26da770aa37bf7a75cc3 to your computer and use it in GitHub Desktop.
Cosas que necesito a la mano para bricks y elementor.
/* BREAKPOINTS bricks */
/* MOBILE */
@media (max-width: 478px) {}
/* MOBILE HORIZONTAL */
@media (max-width: 767px) {}
/* TABLET */
@media (max-width: 991px) {}
/* LAPTOP */
@media (min-width: 1006px) and (max-width: 1399px){}
/* BIG SCREEN */
@media (min-width: 1400px) {}
/* BREAKPOINTS */
/* MOBILE */
@media only screen and (max-width: 767px){}
/* TABLET and BELOW */
@media only screen and (max-width: 1024px){}
/* TABLET ONLY */
@media only screen and (min-width: 768px) and (max-width: 1024px){}
@media only screen and (max-width: 1024px){}
/* Para el menú movil*/
selector .elementor-nav-menu--dropdown{
height: 90vh;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment