Created
October 29, 2025 06:26
-
-
Save ixtk/6689055e82e8a07a65968e456cd98101 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
| @import url(https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css); | |
| :root { | |
| --pico-form-element-spacing-vertical: 5px; | |
| --pico-form-element-spacing-horizontal: 15px; | |
| --pico-spacing: 0px; | |
| } | |
| .products-container { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fill, minmax(210px, auto)); | |
| margin: 16px 0; | |
| gap: 16px; | |
| } | |
| .products-container h2 { | |
| font-size: 0.9rem; | |
| white-space: nowrap; | |
| overflow: hidden; | |
| text-overflow: ellipsis; | |
| } | |
| .product { | |
| display: flex; | |
| flex-direction: column; | |
| justify-content: center; | |
| } | |
| img { | |
| padding: 16px; | |
| max-height: 226px; | |
| object-fit: cover; | |
| flex: 1; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment