Skip to content

Commit 43f3eb3

Browse files
committed
Fix media query for WebPartTitle font-size
1 parent 623c88d commit 43f3eb3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/controls/webPartTitle/WebPartTitle.module.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
margin-bottom: 11px;
55
color: "[theme:neutralPrimary, default: #333333]";
66

7-
@media (max-width: 320px) {
7+
@media (min-width: 320px) {
88
font-size: 21px;
99
}
1010

11-
@media (max-width: 480px) {
11+
@media (min-width: 480px) {
1212
font-size: 24px;
1313
}
1414

0 commit comments

Comments
 (0)