Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kimcc/hugo-theme-noteworthy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkimcc <15278020+kimcc@users.noreply.github.com>2020-04-16 01:24:55 +0300
committerGitHub <noreply@github.com>2020-04-16 01:24:55 +0300
commit76732c19c7d6c646d4c5932042a8a360ff241e4e (patch)
tree3d2e6289a1a6747ba0720eebf472c41701d25460
parentbd6a3c34fbbf66df87967069d415a126cd7ee296 (diff)
parenta49a6d3f98007643c4c30793324430eb492f3cc6 (diff)
Merge pull request #13 from aubm/hide-horizontal-scrollbar-on-mobile
hide horizontal scrollbar on mobile
-rw-r--r--assets/css/main.scss6
1 files changed, 4 insertions, 2 deletions
diff --git a/assets/css/main.scss b/assets/css/main.scss
index 53ce7ef..5405599 100644
--- a/assets/css/main.scss
+++ b/assets/css/main.scss
@@ -29,7 +29,9 @@ $code: Menlo,Monaco,"Courier New",monospace;
html,
body {
- height: 100%;
+ height: 100%;
+ width: 100%;
+ overflow-x: hidden;
}
html {
@@ -505,4 +507,4 @@ footer {
// BREAKPOINTS
@import "partials/_breakpoints";
-@import "custom"; \ No newline at end of file
+@import "custom";