use css scrollbar styles to make native scrollbars prettier

This commit is contained in:
Bruno Windels 2019-01-21 19:01:18 +01:00
parent 89b576936b
commit 5aff76b49d
5 changed files with 27 additions and 3 deletions

View file

@ -20,6 +20,7 @@ import React from "react";
// Copyright (c) Noel Delgado <pixelia.me@gmail.com> (pixelia.me)
function getScrollbarWidth(alternativeOverflow) {
const div = document.createElement('div');
div.className = 'mx_AutoHideScrollbar'; //to get width of css scrollbar
div.style.position = 'absolute';
div.style.top = '-9999px';
div.style.width = '100px';