Update style and rebuild dist

This commit is contained in:
Rising Odegua
2022-02-01 11:33:45 +01:00
parent 96c482ced4
commit 48bddee6d8
6 changed files with 12 additions and 18 deletions

View File

@@ -14,7 +14,7 @@ const KeyInfo = ({ descriptor, resources }) => {
return (
<>
<section className="mt-8 mb-8" name="key-info" id="key-info">
<section className="m-8" name="key-info" id="key-info">
<h2 className="text-xl font-bold mb-4">Key info</h2>
<div className="grid grid-cols-7 gap-4">
<div>

View File

@@ -19,7 +19,7 @@ const ReadMe = ({ readme }) => {
}
ReadMe.propTypes = {
readmeHtml: PropTypes.string.isRequired
readme: PropTypes.string.isRequired
}
export default ReadMe

View File

@@ -14,7 +14,7 @@ const Table = ({ columns, data }) => {
return row
})
return (
<div data-testid="tableGrid" style={{ height: 400, width: '100%' }}>
<div data-testid="tableGrid">
<DataGrid rows={rows} columns={columns} pageSize={5} />
</div>
);