Skip to content

Commit 4656ef9

Browse files
author
jyn
committed
๐ŸŽจ style: ์Šค์ผˆ๋ ˆํ†ค ๋ฐ˜์‘ํ˜• ์œ„์น˜ ์ˆ˜์ •
1 parent b6af7e1 commit 4656ef9

File tree

3 files changed

+16
-17
lines changed

3 files changed

+16
-17
lines changed

โ€Žsrc/components/Carousel/Carousel.module.scssโ€Ž

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@
8484
//์บ๋Ÿฌ์…€ ์•ˆ๋ฐ€๋ฆฌ๋„๋ก ์ถ”๊ฐ€ํ•จ
8585
.carousel__cardset-wrapper {
8686
width: 100vw;
87+
padding: 0 24px;
8788
}
8889
}
8990
// ํƒœ๋ธ”๋ฆฟ
@@ -102,6 +103,9 @@
102103

103104
//๋ชจ๋ฐ”์ผ
104105
@media (max-width: 767px) {
106+
.carousel__cardset-wrapper {
107+
padding: 0 20px;
108+
}
105109
h2 {
106110
margin-bottom: 12px;
107111
}

โ€Žsrc/components/CarouselSkeleton/CarouselSkeleton.module.scssโ€Ž

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@
1717
}
1818

1919
.section--sk {
20-
// position: absolute;
21-
// top: 52px;
22-
// z-index: 1;
2320
display: flex;
2421
gap: 20px;
2522
}
@@ -42,17 +39,19 @@
4239
-webkit-animation: shimmer 1.2s infinite;
4340
animation: shimmer 1.2s infinite;
4441
}
45-
46-
//๋ชจ๋ฐ”์ผ,ํƒœ๋ธ”๋ฆฟ ๊ณตํ†ต ์ ์šฉ
47-
@media (max-width: 1023px) {
42+
@media (max-width: 1200px) {
43+
//์•ˆ๋ฐ€๋ฆฌ๋„๋ก ์ถ”๊ฐ€ํ•จ(์บ๋Ÿฌ์…€๋ณด๋‹ค ํ™”๋ฉด ์‚ฌ์ด์ฆˆ๊ฐ€ ์ž‘์•„์งˆ๋•Œ๋ถ€ํ„ฐ ์ ์šฉํ•ด์•ผํ•จ..)
4844
.section--sk {
49-
max-width: 100%;
45+
width: 100vw;
46+
padding: 0 24px;
5047
overflow: hidden;
51-
padding: 0 20px;
5248
}
5349
}
5450
//๋ชจ๋ฐ”์ผ
5551
@media (max-width: 767px) {
52+
.section--sk {
53+
padding: 0 20px;
54+
}
5655
.card--sk {
5756
min-width: 208px;
5857
height: 232px;

โ€Žsrc/pages/RecipientList/RecipientList.module.scssโ€Ž

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@
2828
-ms-user-select: none;
2929
user-select: none;
3030
}
31-
31+
@media (max-width: 1200px) {
32+
.section__h2 {
33+
width: 100%;
34+
}
35+
}
3236
@media (min-width: 768px) and (max-width: 1023px) {
3337
.section-listpage {
3438
padding: 0 24px;
@@ -37,10 +41,6 @@
3741
margin-top: 156px;
3842
margin-bottom: 24px;
3943
}
40-
41-
.section__h2 {
42-
max-width: 100%;
43-
}
4444
}
4545
@media (max-width: 767px) {
4646
.section-listpage {
@@ -51,10 +51,6 @@
5151
margin-top: 66px;
5252
margin-bottom: 24px;
5353
}
54-
55-
.section__h2 {
56-
width: 100%;
57-
}
5854
.section--mobile-gap {
5955
margin-bottom: 74px;
6056
}

0 commit comments

Comments
ย (0)