fix: update preview styles

This commit is contained in:
2026-08-30 22:40:32 +05:00
parent 86b1c813e7
commit 6c8f7b2d8b
4 changed files with 56 additions and 25 deletions
@@ -15,8 +15,15 @@
<style>
.preview-stack {
display: grid;
grid-template-columns: 1fr;
grid-template-columns: 1fr 1fr;
gap: 12px;
width: 100%;
min-width: 0;
display: grid;
}
@media (max-width: 1100px) {
.preview-stack {
grid-template-columns: repeat(3, minmax(220px, 1fr));
}
}
</style>