Created
February 2, 2018 03:53
-
-
Save jbd91/050d97aaa5f06542c5535de2548cbbc9 to your computer and use it in GitHub Desktop.
Flex Box
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
| .listing-items { | |
| display: flex; | |
| flex-direction: row; | |
| flex-wrap: wrap; | |
| align-items: flex-start; | |
| .listing-item { | |
| margin: 1rem; | |
| width: calc(100% / 3 - 2rem); | |
| @media screen and (max-width: 1024px) { | |
| width: calc(100% / 2 - 2rem); | |
| } | |
| @media screen and (max-width: 639px) { | |
| width: 100%; | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment