fixes large h1s on mobile causing horizontal scrolling

This commit is contained in:
James Tomasino 2020-09-26 20:51:40 +00:00
parent edc9543120
commit 6c272afa11
1 changed files with 9 additions and 3 deletions

View File

@ -304,7 +304,8 @@ th {
.img-thumbnail,
body {
background-color: #040304
background-color: #040304;
overflow-x: hidden;
}
@font-face {
@ -1585,7 +1586,7 @@ h6 {
.h1,
h1 {
font-size: 48px
font-size: 38px
}
.h2,
@ -1834,6 +1835,11 @@ dd {
}
@media (min-width:768px) {
.h1,
h1 {
font-size: 48px
}
.dl-horizontal dt {
float: left;
width: 160px;
@ -8014,4 +8020,4 @@ tr.active {
::-moz-selection {
background: #3EE77B;
color: #040304
}
}