Closed pierrelefevre closed 5 months ago
I created a tiny component NoWrapTable.tsx
that just wraps Table with whiteSpace: "nowrap" in components
:
import { Table, styled } from "@mui/material";
const NoWrapTable = styled(Table)({
whiteSpace: "nowrap",
});
export default NoWrapTable;
Here's how it looks on the GPU types table
Should nowrap be used on all x-scrollable tables?
StorageManager.tsx might be better off with text wrapping, With long storage paths is seems tedious to scroll, or what do you think is best?
Doesn't make sense for the text to wrap on mobile and make everything super weird and ugly since the entire table container is x-scrollable as per material ui guidelines