We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f8eeb6 commit 46757b3Copy full SHA for 46757b3
src/dashboard/trade/Trade.tsx
@@ -31,6 +31,9 @@ type StateType = DashboardContentState & {
31
32
const styles = (theme: Theme) => {
33
return createStyles({
34
+ container: {
35
+ height: "100%",
36
+ },
37
wrapper: {
38
height: "100%",
39
},
@@ -126,7 +129,7 @@ class Trade extends DashboardContent<PropsType, StateType> {
126
129
127
130
return (
128
131
<Provider tradeStore={this.tradeStore}>
- <Grid container direction="column">
132
+ <Grid container direction="column" className={classes.container}>
133
{this.state.opendexdLocked || this.state.opendexdNotReady ? (
134
<ViewDisabled
135
opendexdLocked={this.state.opendexdLocked}
0 commit comments