Skip to content

Commit

Permalink
SOV-917: fix trading chart layout on mobile (#2452)
Browse files Browse the repository at this point in the history
  • Loading branch information
soulBit authored Oct 26, 2022
1 parent 5b7e74e commit e941c19
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/components/TradingChart/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export function TradingChart(props: ChartContainerProps) {
return (
<div
className={classNames(
'tw-w-full tw-h-full tw-flex tw-flex-col tw-rounded tw-overflow-hidden',
'tw-w-full tw-h-full tw-flex tw-rounded tw-overflow-hidden',
hasCharts && 'tw-border',
)}
style={
Expand All @@ -137,7 +137,7 @@ export function TradingChart(props: ChartContainerProps) {
: { minWidth: 270, minHeight: 500 }
}
>
<>
<div className="tw-flex tw-flex-col tw-w-full">
<div
id="tv_chart_container"
className={classNames(
Expand Down Expand Up @@ -184,7 +184,7 @@ export function TradingChart(props: ChartContainerProps) {
/>
</div>
)}
</>
</div>
</div>
);
}
Expand Down

0 comments on commit e941c19

Please sign in to comment.