@@ -67,17 +67,18 @@ export const Menu = styled.div`
6767` ;
6868
6969export const ImageWrapper = styled . div `
70+ position: relative;
7071 margin-top: 0px; /* 1.25rem */
7172 width: 100%;
7273 display: flex;
7374 justify-content: center;
7475` ;
7576
7677export const Image = styled . img `
77- max- width: 512px ;
78- width: 390px ;
79- height: 519.326px ;
80- flex-shrink: 0 ;
78+ width: 100% ;
79+ aspect-ratio: 3 / 4 ;
80+ height: auto ;
81+ object-fit: cover ;
8182` ;
8283
8384export const IconRow = styled . div `
@@ -105,28 +106,29 @@ export const IconWrapper = styled.div`
105106 }
106107` ;
107108
108- export const BrandBoxContainer = styled . div `
109+ export const ClothingInfoContainer = styled . div `
109110 display: flex;
110111 overflow-x: auto; /* 가로 스크롤 가능하도록 설정 */
111112 white-space: nowrap; /* 줄바꿈 없이 한 줄로 나열 */
112113 padding: 0.625rem 0;
113- margin-top: 16px; /* 상단과의 간격 */
114+ // margin-top: 16px; /* 상단과의 간격 */
114115 padding: 0px 20px; /* 1.25rem */
115116
116117 &::-webkit-scrollbar {
117118 height: 0rem;
118119 }
119120` ;
120121
122+ /*
121123export const BrandBox = styled.div`
122- display: inline-flex; /* inline-flex를 사용하여 가로 배치 유지 */
124+ display: inline-flex; // inline-flex를 사용하여 가로 배치 유지
123125 align-items: center;
124126 padding: 0.625rem;
125127 border: 0.0625rem solid #7b7b7b;
126128 margin-right: 0.625rem;
127- width: 15.3243rem; /* 지정된 너비 */
128- height: 4.5rem; /* 지정된 높이 */
129- flex-shrink: 0; /* 크기 고정 */
129+ width: 15.3243rem; // 지정된 너비
130+ height: 4.5rem; // 지정된 높이
131+ flex-shrink: 0; // 크기 고정
130132
131133 img {
132134 width: 3.125rem;
@@ -138,17 +140,17 @@ export const BrandBox = styled.div`
138140 display: flex;
139141 flex-direction: column;
140142 justify-content: center;
141- flex-grow: 1; /* 텍스트 영역 확장 */
143+ flex-grow: 1; /./ 텍스트 영역 확장
142144 }
143145
144146 &:last-child {
145147 margin-right: 0;
146148 }
147149
148150 .next-icon {
149- width: 1.875rem; /* 아이콘 크기 */
151+ width: 1.875rem; // 아이콘 크기
150152 height: 19px;
151- margin-left: auto; /* 자동으로 오른쪽 끝으로 배치 */
153+ margin-left: auto; // 자동으로 오른쪽 끝으로 배치
152154 }
153155`;
154156
@@ -158,6 +160,7 @@ export const BrandLink = styled.div`
158160 justify-content: space-between;
159161 width: 100%;
160162`;
163+ */
161164
162165export const TabContainer = styled . div `
163166 display: flex;
@@ -240,7 +243,7 @@ export const Arrow = styled.div<{ direction: string; disabled: boolean }>`
240243
241244export const Indicator = styled . div `
242245 position: absolute;
243- bottom : 10px;
246+ top : 10px;
244247 left: 50%;
245248 transform: translateX(-50%);
246249 background-color: rgba(0, 0, 0, 0.5);
0 commit comments