From dfe189ff1c61c44490e603c9494c4af06f276588 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Sun, 1 May 2022 20:07:29 +0200 Subject: [PATCH] fix(core): update --- ts/00_commitinfo_data.ts | 2 +- ts/domtools.css.basestyles.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index a17bfdd..6aab7cd 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.21', + version: '2.0.22', description: 'tools to simplify complex css structures' } diff --git a/ts/domtools.css.basestyles.ts b/ts/domtools.css.basestyles.ts index d25a0db..a99bffd 100644 --- a/ts/domtools.css.basestyles.ts +++ b/ts/domtools.css.basestyles.ts @@ -12,8 +12,8 @@ export const scrollBarStyles: string = (() => { ::-webkit-scrollbar { width: 0px; } - * { - scrollbar-width: 0px; + body { + scrollbar-width: none; } `.cssText; return returnStyles;