Skip to content

Commit 7933686

Browse files
fix: font size changes reverted and removed extra padding (#1069)
1 parent 3fb9790 commit 7933686

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

code/frontend/src/components/Answer/Answer.module.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,8 @@ sup {
199199
}
200200
}
201201

202-
@media screen and (max-width: 1280px) {
202+
/* Styles for 1280p resolution at 200% zoom */
203+
@media screen and (max-width: 640px) {
203204
.answerContainer, .answerText {
204205
font-size: 0.6rem !important;
205206
}

code/frontend/src/pages/chat/Chat.module.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,8 @@
326326
}
327327
}
328328

329-
@media screen and (max-width: 1280px) {
329+
/* Styles for 1280p resolution at 200% zoom */
330+
@media screen and (max-width: 640px) {
330331
.clearChatBroom {
331332
left: -23px !important;
332333
}

code/frontend/src/pages/layout/Layout.module.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ body {
88
.header, .footer {
99
width: 100%;
1010
max-width: 1200px;
11-
padding: 1rem;
1211
box-sizing: border-box;
1312
}
1413

0 commit comments

Comments
 (0)