Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
6af5b00fcf
@ -5,9 +5,10 @@
|
||||
/* ─── Product Grid ─── */
|
||||
.product-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
|
||||
grid-template-columns: repeat(auto-fit, 260px);
|
||||
gap: 1.5rem;
|
||||
padding: 2rem;
|
||||
justify-content: start;
|
||||
}
|
||||
|
||||
/* ─── Product Card ─── */
|
||||
@ -21,6 +22,7 @@
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 270px;
|
||||
width: 260px;
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
position: relative;
|
||||
@ -239,7 +241,7 @@
|
||||
/* ─── Responsive ─── */
|
||||
@media (max-width: 768px) {
|
||||
.product-grid {
|
||||
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
|
||||
grid-template-columns: repeat(auto-fit, 160px);
|
||||
gap: 0.8rem;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user