feat: Update media query breakpoints from 2000px to 2150px for improved responsiveness across components

This commit is contained in:
Will Miao
2025-08-27 09:54:08 +08:00
parent 94ed81de5e
commit 01843b8f2b
6 changed files with 8 additions and 8 deletions

View File

@@ -41,7 +41,7 @@
}
/* Responsive adjustments for 1440p screens (2K) */
@media (min-width: 2000px) {
@media (min-width: 2150px) {
.card-grid {
max-width: 1800px; /* Increased for 2K screens */
grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
@@ -525,7 +525,7 @@
}
/* For larger screens, allow more space for the cards */
@media (min-width: 2000px) {
@media (min-width: 2150px) {
.card-grid.virtual-scroll {
max-width: 1800px;
}