Skip to content

Instantly share code, notes, and snippets.

@ixtk
Created October 29, 2025 06:26
Show Gist options
  • Select an option

  • Save ixtk/6689055e82e8a07a65968e456cd98101 to your computer and use it in GitHub Desktop.

Select an option

Save ixtk/6689055e82e8a07a65968e456cd98101 to your computer and use it in GitHub Desktop.
@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