Last active
November 25, 2022 20:08
-
-
Save flymke/406d3c1fab312fa9acead680b129568d to your computer and use it in GitHub Desktop.
SantaPress - make more doors in a row on mobile devices
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
/* make 4 doors in a row */ | |
@media only screen and (max-width: 767px) { | |
.santapress-container .santapress-door { | |
width: 25% !important; | |
flex: 1 0 25% !important; | |
} | |
} | |
/* make 4 doors in a row without stretching the last element */ | |
@media only screen and (max-width: 767px) { | |
.santapress-container .santapress-door { | |
width: 25% !important; | |
flex: none !important; | |
} | |
} |
Author
flymke
commented
Sep 6, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment