Created
January 4, 2019 13:53
-
-
Save ae-elaine-axis/dfca51206eeab80bcd772791d161dc52 to your computer and use it in GitHub Desktop.
Move the Related Products section to the right
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
.ec-size .ec-store .grid__wrap .grid__products { | |
justify-content: flex-end; | |
} | |
.ec-size .ec-store .ec-related-products__title { | |
text-align: right; | |
} | |
/* Or this alternative code */ | |
.ec-size .ec-store .grid__wrap .grid__products { | |
flex-direction: row-reverse; | |
} | |
.ec-size .ec-store .ec-related-products__title { | |
text-align: right; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment