Created
April 15, 2021 07:29
-
-
Save idstck/02473b76d56bcc76ba25f6902254cd66 to your computer and use it in GitHub Desktop.
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
| .grid-wrap { | |
| display: flex; | |
| flex-wrap: wrap; | |
| justify-content: space-between; | |
| margin-top: 16px; | |
| } | |
| .product-item { | |
| align-items: center; | |
| border-radius: 8px; | |
| box-shadow: 0px 2px 5px #888; | |
| display: flex; | |
| flex-direction: column; | |
| margin-bottom: 2%; | |
| padding: 20px; | |
| position: relative; | |
| width: 32%; | |
| } | |
| .product-name { | |
| margin-bottom: 0; | |
| } | |
| img { | |
| height: 200px; | |
| width: 200px; | |
| border-radius: 5%; | |
| } | |
| a { | |
| width: 100%; | |
| } | |
| button { | |
| width: 100%; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment