diff --git a/v2/web/components/SideBar.tsx b/v2/web/components/SideBar.tsx index 9c49530..0570d33 100644 --- a/v2/web/components/SideBar.tsx +++ b/v2/web/components/SideBar.tsx @@ -100,6 +100,10 @@ const LIST_SX = { height: '100%', overflowY: 'auto', overscrollBehavior: 'none', + fontSize: '0.875rem', +}; +const LIST_ITEM_SX = { + padding: '0 8px', }; interface Props { @@ -151,12 +155,12 @@ export const SideBar: React.FC = ({ headings, path }) => { }); }} disablePadding - style={{ padding: '0 8px' }} + sx={LIST_ITEM_SX} ref={ref} key={key} > - + );