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

github.com/invinciblycool/lekh.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarsh Patel <darshkpatel@gmail.com>2020-04-03 18:34:56 +0300
committerGitHub <noreply@github.com>2020-04-03 18:34:56 +0300
commite321102d670353fa3eb790210e98f25fa9f5dfc6 (patch)
tree9e07fa476ed187f7a133220a2804696982aa0762
parentb53f2688c89e770bcbf6896a58eda80e24886af6 (diff)
Fixes bottom bar glitch on overscroll
-rw-r--r--static/css/style.css6
1 files changed, 4 insertions, 2 deletions
diff --git a/static/css/style.css b/static/css/style.css
index 2139eb7..97de490 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -6,7 +6,9 @@ body {
max-width: 40rem;
padding: 2rem;
margin: auto;
- background: #fafafa; }
+ background: #fafafa;
+ overscroll-behavior-y: none;
+}
img {
max-width: 100%; }
@@ -36,4 +38,4 @@ h3 {
hr {
border: 0px;
border: 1px solid #eee;
-} \ No newline at end of file
+}