From 20404dec338ebeb34f97eb48410d6b9ea455913a Mon Sep 17 00:00:00 2001 From: Magic Cat Date: Tue, 18 May 2021 22:55:42 +0800 Subject: [PATCH] Wrap list in container --- imports/ui/transactions/TransactionsList.jsx | 69 ++++++++++---------- 1 file changed, 36 insertions(+), 33 deletions(-) diff --git a/imports/ui/transactions/TransactionsList.jsx b/imports/ui/transactions/TransactionsList.jsx index 4a9544796..95185114f 100644 --- a/imports/ui/transactions/TransactionsList.jsx +++ b/imports/ui/transactions/TransactionsList.jsx @@ -83,7 +83,7 @@ export default class Transactions extends Component{ } render(){ - return !this.props.homepage ?
+ return !this.props.homepage ?
Latest Transactions on {Meteor.settings.public.chainName} | Big Dipper @@ -108,41 +108,44 @@ export default class Transactions extends Component{ > } /> - + + + -
: -
transactions.transactions
- - - - - - } - open={this.state.sidebarOpen} - onSetOpen={this.onSetSidebarOpen} - styles={{ - sidebar: { - background: "white", - position: "fixed", - width: '85%', - zIndex: 4 - }, overlay: { - zIndex: 3 - } - }} - > - } /> + + : +
transactions.transactions
+ +
+ + + + } + open={this.state.sidebarOpen} + onSetOpen={this.onSetSidebarOpen} + styles={{ + sidebar: { + background: "white", + position: "fixed", + width: '85%', + zIndex: 4 + }, overlay: { + zIndex: 3 + } + }} + > + } /> - - - - - + + + + + -
-
-
; + + + ; } } \ No newline at end of file