fix #1929 by using flex instead of grid to lay out the tabs view (#1930)

This commit is contained in:
Ashley Stanton-Nurse
2024-08-13 11:19:24 -07:00
committed by GitHub
parent 7f55de7aa2
commit b59ba20ed0
2 changed files with 5 additions and 5 deletions

View File

@@ -57,7 +57,8 @@ export const Tabs = ({ explorer }: TabsProps): JSX.Element => {
const defaultMessageBarStyles: IMessageBarStyles = {
root: {
height: `${LayoutConstants.rowHeight}px`,
overflow: "auto",
overflow: "hidden",
flexDirection: "row",
},
};