Browse Source

Add vertical hover line

pull/1020/head
Thomas 3 years ago
parent
commit
f8d20d5a79
  1. 2
      apps/client/src/app/components/home-overview/home-overview.html
  2. 2
      apps/client/src/app/components/home-overview/home-overview.scss

2
apps/client/src/app/components/home-overview/home-overview.html

@ -4,7 +4,9 @@
<div class="row w-100"> <div class="row w-100">
<div class="chart-container col"> <div class="chart-container col">
<gf-line-chart <gf-line-chart
class="position-absolute"
symbol="Performance" symbol="Performance"
[currency]="user?.settings?.baseCurrency"
[historicalDataItems]="historicalDataItems" [historicalDataItems]="historicalDataItems"
[locale]="user?.settings?.locale" [locale]="user?.settings?.locale"
[ngClass]="{ 'pr-3': deviceType === 'mobile' }" [ngClass]="{ 'pr-3': deviceType === 'mobile' }"

2
apps/client/src/app/components/home-overview/home-overview.scss

@ -25,10 +25,8 @@
gf-line-chart { gf-line-chart {
bottom: 0; bottom: 0;
left: 0; left: 0;
position: absolute;
right: 0; right: 0;
top: 0; top: 0;
z-index: -1;
} }
} }
} }

Loading…
Cancel
Save