Skip to content

Commit 93c57b8

Browse files
authored
Merge branch 'main' into chore/custom-pane-height-for-technical-indicators
2 parents 3848d06 + c5fd381 commit 93c57b8

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

app/components/UI/AssetOverview/Price/Price.styles.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const styleSheet = (params: { theme: Theme }) =>
5050
width: '100%',
5151
alignSelf: 'stretch',
5252
paddingTop: 12,
53-
paddingBottom: 16,
53+
paddingBottom: 8,
5454
flexDirection: 'column',
5555
alignItems: 'flex-start',
5656
gap: 10,

app/components/UI/Charts/AdvancedChart/webview/chartLogic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3577,7 +3577,7 @@ function createStudyLegendOverlay() {
35773577
const div = document.createElement('div');
35783578
div.id = 'study-legend-overlay';
35793579
div.style.cssText =
3580-
'position:absolute;top:21px;left:' +
3580+
'position:absolute;top:1px;left:' +
35813581
LEGEND_OVERLAY_LEFT_PX +
35823582
'px;z-index:5;pointer-events:none;' +
35833583
'display:flex;flex-wrap:wrap;align-items:flex-start;column-gap:8px;row-gap:2px;';

app/components/UI/Charts/AdvancedChart/webview/chartLogicString.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3586,7 +3586,7 @@ function createStudyLegendOverlay() {
35863586
const div = document.createElement('div');
35873587
div.id = 'study-legend-overlay';
35883588
div.style.cssText =
3589-
'position:absolute;top:21px;left:' +
3589+
'position:absolute;top:1px;left:' +
35903590
LEGEND_OVERLAY_LEFT_PX +
35913591
'px;z-index:5;pointer-events:none;' +
35923592
'display:flex;flex-wrap:wrap;align-items:flex-start;column-gap:8px;row-gap:2px;';

0 commit comments

Comments
 (0)