diff --git a/.changeset/popular-sheep-compare.md b/.changeset/popular-sheep-compare.md new file mode 100644 index 000000000..94acd38c9 --- /dev/null +++ b/.changeset/popular-sheep-compare.md @@ -0,0 +1,5 @@ +--- +'contexture-react': patch +--- + +Hide scrollbars from individual filters diff --git a/packages/react/src/greyVest/Style.js b/packages/react/src/greyVest/Style.js index ecf07c11a..b5769baf4 100644 --- a/packages/react/src/greyVest/Style.js +++ b/packages/react/src/greyVest/Style.js @@ -106,6 +106,13 @@ export default () => ( overflow-y: auto; max-height: 80vh; transition: max-height .3s ease-in; + /* Gecko-based browsers */ + scrollbar-width: none; + } + + /* WebKit-based browsers */ + .gv-expandable-body.expanded::-webkit-scrollbar { + display: none; } /* Table */