diff --git a/assets/style.css b/assets/style.css index 98c5e91..e1e370b 100644 --- a/assets/style.css +++ b/assets/style.css @@ -4,6 +4,28 @@ Utilities ======================== */ + + /* ======================== +Disable Scroll Bar - Its ugly +======================== */ +#parent{ + width: 100%; + height: 100%; + overflow: hidden; +} + +#child{ + width: 100%; + height: 100%; + overflow-y: scroll; + padding-right: 17px; /* Increase/decrease this value for cross-browser compatibility */ + box-sizing: content-box; /* So the width will be 100% + 17px */ +} + +::-webkit-scrollbar { + display: none; +} + * { box-sizing: border-box; }