From 3cc13a59e2062994f310fbe632964afe951c190b Mon Sep 17 00:00:00 2001 From: Dylan Kilgore Date: Tue, 25 Jul 2023 10:22:40 -0700 Subject: [PATCH] fix: table: adds default overflow back to latest scroll bars mixin --- src/components/DateTimePicker/DatePicker/Styles/mixins.scss | 1 + src/components/Table/Internal/octable.module.scss | 1 + 2 files changed, 2 insertions(+) diff --git a/src/components/DateTimePicker/DatePicker/Styles/mixins.scss b/src/components/DateTimePicker/DatePicker/Styles/mixins.scss index 39bee3eb2..0edf31f3c 100644 --- a/src/components/DateTimePicker/DatePicker/Styles/mixins.scss +++ b/src/components/DateTimePicker/DatePicker/Styles/mixins.scss @@ -57,6 +57,7 @@ $picker-input-padding-vertical: max( // Picker scroll bars @mixin scroll-bars() { + overflow: auto; -ms-overflow-style: none; &::-webkit-scrollbar { diff --git a/src/components/Table/Internal/octable.module.scss b/src/components/Table/Internal/octable.module.scss index 0e280c32a..dd8616552 100644 --- a/src/components/Table/Internal/octable.module.scss +++ b/src/components/Table/Internal/octable.module.scss @@ -1,4 +1,5 @@ @mixin scroll-bars() { + overflow: auto; -ms-overflow-style: none; &::-webkit-scrollbar {