Skip to content

Commit

Permalink
[Feat] DashboardList 반응형 디자인 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
eunji-0623 committed May 31, 2024
1 parent 7367c66 commit 42e0bbd
Showing 1 changed file with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,27 @@
align-items: center;
gap: 13px;
}

@media screen and (max-width: 1024px) {
.container {
width: 504px;
}

.dashboardList {
grid-template-columns: 1fr 1fr;
grid-template-rows: 68px 68px 68px;
gap: 10px;
}
}

@media screen and (max-width: 768px) {
.container {
width: 260px;
}

.dashboardList {
grid-template-columns: 1fr;
grid-template-rows: repeat(6, 58px);
gap: 8px;
}
}

0 comments on commit 42e0bbd

Please sign in to comment.