mirror of
https://github.com/gohugoio/hugoDocs.git
synced 2025-09-19 14:34:49 -04:00
Fix overflow issues on mobile safari
This commit is contained in:
parent
4b133ece88
commit
1d52df221a
@ -28,7 +28,7 @@ main.main {
|
||||
max-width: $content-max-width;
|
||||
position: relative;
|
||||
min-height:calc(100vh - #{$site-header-height * 2});
|
||||
overflow-x:hidden;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
header.content-header {
|
||||
@ -37,6 +37,7 @@ header.content-header {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
margin-top: 3em;
|
||||
overflow-x: hidden;
|
||||
@include MQ(M) {
|
||||
margin-top: 2em;
|
||||
}
|
||||
|
@ -1,10 +1,12 @@
|
||||
.all-content-wrapper.home {
|
||||
background-color: lighten($hugo-blue-light, 50%);
|
||||
overflow-x:hidden;
|
||||
}
|
||||
|
||||
main#homepage {
|
||||
width: 90%;
|
||||
margin-bottom: 2.5em;
|
||||
overflow-x:hidden;
|
||||
@include MQ(M) {
|
||||
max-width: $M * .9;
|
||||
}
|
||||
|
2
themes/hugodocs/static/css/style.min.css
vendored
2
themes/hugodocs/static/css/style.min.css
vendored
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user