From 0712272c1d3e552dfef784de7ffe2ac9dbca8faa Mon Sep 17 00:00:00 2001 From: Tyler Perkins Date: Sat, 17 Dec 2022 20:25:22 -0500 Subject: [PATCH] Remove scrollbar and fix footer button width --- src/common/common.css | 5 +++++ src/common/footer.css | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/common/common.css b/src/common/common.css index aea40a8..8a8494e 100644 --- a/src/common/common.css +++ b/src/common/common.css @@ -66,6 +66,8 @@ textarea { html { scroll-behavior: smooth; width: 100vw; + -ms-overflow-style: none; + scrollbar-width: none; } @media only screen and (max-width: 768px){ @@ -78,3 +80,6 @@ html { } +html::-webkit-scrollbar { + display: none; +} diff --git a/src/common/footer.css b/src/common/footer.css index f054960..5da6b2a 100644 --- a/src/common/footer.css +++ b/src/common/footer.css @@ -24,7 +24,7 @@ } .footer-link-list a { - width: 100%; + width: calc(100% - 30px); background: rgba(22,22,24,1); border: grey; border-width: 3px;