Skip to content

Commit 9b7db28

Browse files
authored
Merge pull request #16 from opendexnetwork/fix/tradehistory-layout
fix: improve trade history layout
2 parents 3236149 + 1a69ce0 commit 9b7db28

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/dashboard/tradehistory/Tradehistory.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ type StateType = DashboardContentState & {
5454

5555
const styles = () => {
5656
return createStyles({
57+
wrapper: {
58+
height: "100%",
59+
},
5760
content: {
5861
flex: 1,
5962
overflowY: "auto",
@@ -150,7 +153,7 @@ class Tradehistory extends DashboardContent<PropsType, StateType> {
150153
const { classes } = this.props;
151154

152155
return (
153-
<Grid container direction="column">
156+
<Grid container direction="column" className={classes.wrapper}>
154157
{this.state.opendexdLocked || this.state.opendexdNotReady ? (
155158
<ViewDisabled
156159
opendexdLocked={this.state.opendexdLocked}

0 commit comments

Comments
 (0)