Skip to content

Commit

Permalink
Fix h2 font size override on tablets/phones
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleGospo committed Feb 3, 2024
1 parent 675ff02 commit 9960216
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions wp-content/themes/betheme-child/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,6 @@ select:focus {
padding-bottom: 0px;
}

h2 {
font-size: 55px;
}

rs-slide {
top: -60px;
}
Expand Down Expand Up @@ -329,6 +325,12 @@ rs-slide {
}
}

@media only screen and (min-width: 960px) {
h2 {
font-size: 55px;
}
}

@media only screen and (max-width: 480px) {
.hidden-fade {
display: none;
Expand Down

0 comments on commit 9960216

Please sign in to comment.