Skip to content

Commit

Permalink
Fix media query for WebPartTitle font-size
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasLamb committed Aug 24, 2018
1 parent 623c88d commit 43f3eb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/controls/webPartTitle/WebPartTitle.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
margin-bottom: 11px;
color: "[theme:neutralPrimary, default: #333333]";

@media (max-width: 320px) {
@media (min-width: 320px) {
font-size: 21px;
}

@media (max-width: 480px) {
@media (min-width: 480px) {
font-size: 24px;
}

Expand Down

0 comments on commit 43f3eb3

Please sign in to comment.