feat: complete Phase 2 - refactor all user pages to Bento UI

This commit is contained in:
Dev
2026-01-20 22:26:13 +05:00
parent b9b889b0bf
commit c92a4e7704
8 changed files with 78 additions and 53 deletions

View File

@@ -363,10 +363,16 @@
.bento-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-columns: 1fr;
gap: var(--bento-gap);
}
@media (min-width: 375px) {
.bento-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 768px) {
.bento-grid {
grid-template-columns: repeat(4, 1fr);