Last active
June 26, 2024 15:04
-
-
Save ramjamx/5e83ade8399b26da770aa37bf7a75cc3 to your computer and use it in GitHub Desktop.
Cosas que necesito a la mano para bricks y elementor.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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