Browse Source

Fix horizontal scrollbar height, closes #5728

pull/5749/head
Jay Phelps 7 years ago
parent
commit
2a082b074f
2 changed files with 2 additions and 0 deletions
  1. 1
      src/definitions/globals/site.less
  2. 1
      src/themes/default/globals/site.variables

1
src/definitions/globals/site.less

@ -135,6 +135,7 @@ a:hover {
body ::-webkit-scrollbar {
-webkit-appearance: none;
width: @customScrollbarWidth;
height: @customScrollbarHeight;
}
body ::-webkit-scrollbar-track {
background: @trackBackground;

1
src/themes/default/globals/site.variables

@ -146,6 +146,7 @@
@useCustomScrollbars: true;
@customScrollbarWidth: 10px;
@customScrollbarHeight: 10px;
@trackBackground: rgba(0, 0, 0, 0.1);
@trackBorderRadius: 0px;

Loading…
Cancel
Save