Beautify scene list table (#252)

* Beautify scene list table

Added modifier props to HTMLTable component.

* Apply table change to performers table
This commit is contained in:
echo6ix 2019-12-08 17:20:38 -05:00 committed by Leopere
parent ecf4e802b0
commit 7dab3fcff7
2 changed files with 3 additions and 3 deletions

View file

@ -84,7 +84,7 @@ export const PerformerListTable: FunctionComponent<IPerformerListTableProps> = (
return (
<>
<div className="grid">
<HTMLTable>
<HTMLTable className="bp3-html-table bp3-html-table-bordered bp3-html-table-condensed bp3-html-table-striped bp3-interactive">
<thead>
<tr>
<th></th>

View file

@ -101,7 +101,7 @@ export const SceneListTable: FunctionComponent<ISceneListTableProps> = (props: I
return (
<>
<div className="grid">
<HTMLTable>
<HTMLTable className="bp3-html-table bp3-html-table-bordered bp3-html-table-condensed bp3-html-table-striped bp3-interactive">
<thead>
<tr>
<th></th>
@ -121,4 +121,4 @@ export const SceneListTable: FunctionComponent<ISceneListTableProps> = (props: I
</>
);
};