From 52664d8ea1e924db70fd15afd83beacada08c555 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Sun, 1 May 2022 19:24:16 +0200 Subject: [PATCH] fix(core): update --- ts/00_commitinfo_data.ts | 2 +- ts/domtools.css.basestyles.ts | 16 ++-------------- 2 files changed, 3 insertions(+), 15 deletions(-) diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 35c5212..a17bfdd 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@designestate/dees-domtools', - version: '2.0.20', + version: '2.0.21', description: 'tools to simplify complex css structures' } diff --git a/ts/domtools.css.basestyles.ts b/ts/domtools.css.basestyles.ts index 2a85947..d25a0db 100644 --- a/ts/domtools.css.basestyles.ts +++ b/ts/domtools.css.basestyles.ts @@ -12,20 +12,8 @@ export const scrollBarStyles: string = (() => { ::-webkit-scrollbar { width: 0px; } - - /* Track */ - ::-webkit-scrollbar-track { - background: #111; - } - - /* Handle */ - ::-webkit-scrollbar-thumb { - background: #666; - } - - /* Handle on hover */ - ::-webkit-scrollbar-thumb:hover { - background: #777; + * { + scrollbar-width: 0px; } `.cssText; return returnStyles;