File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,10 @@ const ConnectWalletContainer = styled.div`
4242 color: ${ ( { theme } ) => theme . primaryText } ;
4343` ;
4444
45+ const StyledEnsureAuth = styled ( EnsureAuth ) `
46+ align-self: center;
47+ ` ;
48+
4549const MiddleContentContainer = styled . div `
4650 display: flex;
4751 justify-content: center;
@@ -72,7 +76,7 @@ const DisputeResolver: React.FC = () => {
7276 < Container >
7377 { isConnected && ! isPreviewPage ? < StyledLabel > Start a case</ StyledLabel > : null }
7478 { isConnected ? (
75- < EnsureAuth >
79+ < StyledEnsureAuth >
7680 < MiddleContentContainer >
7781 { isConnected && ! isPreviewPage ? < Timeline /> : null }
7882 < Routes >
@@ -88,7 +92,7 @@ const DisputeResolver: React.FC = () => {
8892 < Route path = "/preview/*" element = { < Preview /> } />
8993 </ Routes >
9094 </ MiddleContentContainer >
91- </ EnsureAuth >
95+ </ StyledEnsureAuth >
9296 ) : (
9397 < ConnectWalletContainer >
9498 To create a new dispute, connect first
You can’t perform that action at this time.
0 commit comments