Skip to content

Commit

Permalink
Fix UI problem on channel token tab
Browse files Browse the repository at this point in the history
  • Loading branch information
WRadoslaw committed Mar 17, 2024
1 parent a9c6688 commit 6e75736
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ export type CrtMainInfoProps = {

export const CrtMainInfo = ({
name,
description,
avatar,
symbol,
accountsNum,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ export const ToggleContainer = styled.div`
}
`
export const StatisticsContainer = styled.div`
width: 100%;
::before {
content: '';
display: block;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const CrtStatusWidget: FC<CrtStatusWidgetProps> = ({ token }) => {
<Widget
title={status === 'inactive' ? 'Status' : ''}
customNode={
<>
<FlexBox width="100%" flow="column" gap={4}>
{status === 'inactive' ? <InactiveDetails /> : status === 'market' ? <MarketDetails token={token} /> : null}

<StatisticsContainer>
Expand Down Expand Up @@ -99,7 +99,7 @@ export const CrtStatusWidget: FC<CrtStatusWidgetProps> = ({ token }) => {
/>
</Drawer>
</StatisticsContainer>
</>
</FlexBox>
}
/>
)
Expand Down

0 comments on commit 6e75736

Please sign in to comment.