Skip to content

Commit e029d9d

Browse files
authored
Merge pull request #739 from shicechi/horizontal-scrollbar-fix
[Status] Fix horizontal scroll bar appearance for browsers with non-occluding scroll bars.
2 parents 24b0150 + 72544ac commit e029d9d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

index.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ header {
7070
display: flex;
7171
flex-wrap: wrap;
7272
padding-top: 20px;
73-
min-width: 100vw;
73+
min-width: 100%;
7474
height: 140px;
7575
flex-direction: row;
7676
text-align: left;
@@ -118,7 +118,7 @@ nav {
118118
background: rgb(248, 248, 248);
119119

120120
border-bottom: 1px solid rgb(230, 230, 230);
121-
min-width: 100vw;
121+
min-width: 100%;
122122
}
123123

124124
@supports ((position: sticky) or (position: -webkit-sticky)) {
@@ -150,7 +150,7 @@ footer {
150150
background: #333;
151151
color: #ccc;
152152
font-size: 12px;
153-
min-width: 100vw;
153+
min-width: 100%;
154154
justify-content: center;
155155
display: flex;
156156
flex-direction: row;

0 commit comments

Comments
 (0)