Skip to content

Commit 57994be

Browse files
authored
Merge pull request #91 from codeit-maso/feature/Yun
🎨 style: 반응형 기준 수정 (1024px -> 1023px , 768px -> 767px)
2 parents 6d93dc9 + 51a80e3 commit 57994be

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

src/components/Card/Card.module.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,13 +133,13 @@
133133
}
134134
}
135135

136-
@media (max-width: 1024px) {
136+
@media (max-width: 1023px) {
137137
.card {
138138
height: 284px;
139139
}
140140
}
141141

142-
@media (max-width: 768px) {
142+
@media (max-width: 767px) {
143143
.card {
144144
height: 230px;
145145

src/components/Modal/Modal.module.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
}
111111
}
112112

113-
@media (max-width: 768px) {
113+
@media (max-width: 767px) {
114114
.modal {
115115
width: calc(100% - 48px);
116116
}

src/pages/CreateRecipient/CreateRecipient.module.scss

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@
177177
display: none;
178178
}
179179

180-
@media (max-width: 1024px) {
180+
@media (max-width: 1023px) {
181181
.create-page {
182182
position: relative;
183183
min-height: calc(100vh - 57px - 65px);
@@ -189,8 +189,7 @@
189189
}
190190
}
191191

192-
// 모바일 (768px 이하)
193-
@media (max-width: 768px) {
192+
@media (max-width: 767px) {
194193
.create-page {
195194
margin: 50px 20px 0;
196195

src/pages/Recipient/Recipient.module.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
}
9696
}
9797

98-
@media (max-width: 1024px) {
98+
@media (max-width: 1023px) {
9999
.card-container {
100100
grid-template-columns: repeat(2, calc((100% - 16px) / 2));
101101
gap: 16px;
@@ -123,7 +123,7 @@
123123
}
124124
}
125125

126-
@media (max-width: 768px) {
126+
@media (max-width: 767px) {
127127
.card-container {
128128
grid-template-columns: repeat(1, 1fr);
129129
gap: 16px;

0 commit comments

Comments
 (0)