Last active
July 2, 2020 09:53
-
-
Save julian-stark/b322831cfdf3cb3c9e8ff7a7fca587d6 to your computer and use it in GitHub Desktop.
Extras for Elementor - Button Group - Horizontal Scroll
This file contains 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
/* add class .horizontal-scroll to element */ | |
@media (max-width:1024px) { | |
.horizontal-scroll ul.ee-button-group { | |
display:flex; | |
flex-wrap:nowrap; | |
overflow-x:auto; | |
justify-content:flex-start; | |
} | |
.horizontal-scroll ul.ee-button-group li { | |
white-space: nowrap; | |
flex-grow: 1; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment