diff --git a/platform/ui/src/components/Table/Table.jsx b/platform/ui/src/components/Table/Table.jsx index 86029dbf4..9c0d172b2 100644 --- a/platform/ui/src/components/Table/Table.jsx +++ b/platform/ui/src/components/Table/Table.jsx @@ -3,13 +3,19 @@ import PropTypes from 'prop-types'; import classnames from 'classnames'; const Table = ({ children, className, fullWidth, style }) => { + const classes = { + base: 'text-lg text-white', + fullWidth: { + true: 'w-full', + false: '', + }, + }; + return (