Remove scrollbar and fix footer button width
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Tyler Perkins 2022-12-17 20:25:22 -05:00
parent d8ca953000
commit 0712272c1d
2 changed files with 6 additions and 1 deletions

View File

@ -66,6 +66,8 @@ textarea {
html { html {
scroll-behavior: smooth; scroll-behavior: smooth;
width: 100vw; width: 100vw;
-ms-overflow-style: none;
scrollbar-width: none;
} }
@media only screen and (max-width: 768px){ @media only screen and (max-width: 768px){
@ -78,3 +80,6 @@ html {
} }
html::-webkit-scrollbar {
display: none;
}

View File

@ -24,7 +24,7 @@
} }
.footer-link-list a { .footer-link-list a {
width: 100%; width: calc(100% - 30px);
background: rgba(22,22,24,1); background: rgba(22,22,24,1);
border: grey; border: grey;
border-width: 3px; border-width: 3px;