mirror of
https://github.com/stashapp/stash.git
synced 2026-01-14 20:22:49 +01:00
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:
parent
ecf4e802b0
commit
7dab3fcff7
2 changed files with 3 additions and 3 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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
|
|||
</>
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue