Fixed Horizontal Scroll Bar Missing

This commit is contained in:
Niyko 2020-04-27 19:02:56 +05:30
parent ffd7e986e3
commit 25c63b9b5c

View file

@ -17,16 +17,16 @@ body {
overflow: hidden; overflow: hidden;
height: 100vh; height: 100vh;
background: #FAFAFA; background: #FAFAFA;
scrollbar-width: none; /*scrollbar-width: none;*/
font-family: 'Montserrat', sans-serif; font-family: 'Montserrat', sans-serif;
text-rendering: optimizeLegibility !important text-rendering: optimizeLegibility !important
-ms-overflow-style: none; /*-ms-overflow-style: none;
scrollbar-width: none; scrollbar-width: none;*/
} }
* { * {
outline-color: #7962f2 outline-color: #7962f2
-ms-overflow-style: none; /*-ms-overflow-style: none;
scrollbar-width: none; scrollbar-width: none;*/
} }
::selection { ::selection {
background: #4ca0ea; background: #4ca0ea;
@ -36,7 +36,7 @@ body {
background: #4ca0ea; background: #4ca0ea;
color: #fff color: #fff
} }
::-webkit-scrollbar { /*::-webkit-scrollbar {
width: 9px; width: 9px;
height: 12px; height: 12px;
background-color: #CCC background-color: #CCC
@ -51,7 +51,7 @@ body {
background-color: #263238; background-color: #263238;
width: 8px; width: 8px;
height: 8px height: 8px
} }*/
#lang { #lang {
position: fixed; position: fixed;
top: auto; top: auto;
@ -864,11 +864,14 @@ input[type="button"][disabled], input[type="submit"][disabled] {
color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.3);
} }
::-webkit-scrollbar { ::-webkit-scrollbar {
width: 0px; width: 10px;
background: transparent; border-radius: 1000px;
background: #1E1C27;
} }
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
background: transparent; background: #76757B;
width: 10px;
border-radius: 1000px;
} }
table{ table{
background: #2f2b3f; background: #2f2b3f;
@ -981,3 +984,6 @@ a[href="#import"]{
a[href="#import"]:hover{ a[href="#import"]:hover{
color: #ffffff; color: #ffffff;
} }
#menu h1:first-of-type{
margin-top: -9px;
}