Skip to content

Commit a745635

Browse files
committed
[style] 마이페이지 my bar 리스트 정렬 수정
1 parent d997180 commit a745635

File tree

1 file changed

+5
-1
lines changed
  • src/domains/mypage/components/pages/my-bar

1 file changed

+5
-1
lines changed

src/domains/mypage/components/pages/my-bar/MyBar.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,11 @@ function MyBar() {
2929
<div>
3030
{myCocktail.length !== 0 ? (
3131
<div
32-
className="grid grid-cols-1 justify-items-center mt-10 gap-8 sm:[grid-template-columns:repeat(2,minmax(0,320px))] sm:justify-evenly md:[grid-template-columns:repeat(3,minmax(0,250px))]
32+
className="
33+
grid gap-8 md:justify-between justify-center
34+
[grid-template-columns:repeat(1,minmax(0,250px))]
35+
sm:[grid-template-columns:repeat(2,minmax(0,250px))]
36+
md:[grid-template-columns:repeat(3,minmax(0,250px))]
3337
"
3438
>
3539
{myCocktail.map(({ cocktailId, cocktailName, imageUrl }) => (

0 commit comments

Comments
 (0)