From c50d1f7c4a71d7338d20d6bc883e335b904d8ad0 Mon Sep 17 00:00:00 2001 From: benjdlambert Date: Thu, 24 Jul 2025 09:58:04 +0200 Subject: [PATCH] chore: hide sidebar Signed-off-by: benjdlambert --- plugins/catalog/src/alpha/DefaultEntityContentLayout.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/plugins/catalog/src/alpha/DefaultEntityContentLayout.tsx b/plugins/catalog/src/alpha/DefaultEntityContentLayout.tsx index 4f675241c9..0b7b9be4f6 100644 --- a/plugins/catalog/src/alpha/DefaultEntityContentLayout.tsx +++ b/plugins/catalog/src/alpha/DefaultEntityContentLayout.tsx @@ -105,6 +105,13 @@ const useStyles = makeStyles< maxHeight: `calc(100vh - ${theme.spacing(6)}px)`, overflowY: 'auto', alignSelf: 'start', + // Hide the scrollbar for the inner info cards + // kind of an accessibility nightmare, but we see. + scrollbarWidth: 'none', + msOverflowStyle: 'none', + '&::-webkit-scrollbar': { + display: 'none', + }, }, }, }));