Gangrel
Gangrel

Reputation: 481

Align react table to centre of page

I'm working on a table in react and struggling to centre it to the page, so that it sits under the drop-down select and Title

Here is my codesandbox

enter image description here

Upvotes: 0

Views: 5072

Answers (1)

Ids van der Zee
Ids van der Zee

Reputation: 882

Just add margin: auto; to your StyledTable, like so:

const StyledTable = styled.table`
    border-collapse: collapse;
    margin: auto;
  `;

Upvotes: 1

Related Questions