UNPKG

@gzup/macaw-ui-4

Version:

Gzup's UI component library

24 lines (21 loc) 393 B
import { makeStyles } from "../theme"; const useStyles = makeStyles( (theme) => ({ root: { [theme.breakpoints.up("md")]: { "&& table": { tableLayout: "fixed", }, }, "& table": { tableLayout: "auto", }, overflowX: "auto", width: "100%", }, }), { name: "ResponsiveTable", } ); export default useStyles;