Merge branch 'frontend'
Fix css bug in dashboard
This commit is contained in:
commit
5f8bf22559
@ -6,7 +6,7 @@
|
|||||||
<div class="vertical-center">Aktienübersicht</div>
|
<div class="vertical-center">Aktienübersicht</div>
|
||||||
</div>
|
</div>
|
||||||
<mat-card class="placeholder">
|
<mat-card class="placeholder">
|
||||||
<div class="stockTable">
|
<div class="stockTableLHS">
|
||||||
<table mat-table [dataSource]="dataSourceStocks">
|
<table mat-table [dataSource]="dataSourceStocks">
|
||||||
<!--- Note that these columns can be defined in any order.
|
<!--- Note that these columns can be defined in any order.
|
||||||
The actual rendered columns are set as a property on the row definition" -->
|
The actual rendered columns are set as a property on the row definition" -->
|
||||||
@ -53,12 +53,12 @@
|
|||||||
<div class="heading fix-right-side">
|
<div class="heading fix-right-side">
|
||||||
<div class="vertical-center">Depotübersicht</div>
|
<div class="vertical-center">Depotübersicht</div>
|
||||||
</div>
|
</div>
|
||||||
<mat-card class="placeholder"></mat-card>
|
<mat-card class="placeholderRHS"></mat-card>
|
||||||
</div>
|
</div>
|
||||||
</mat-grid-tile>
|
</mat-grid-tile>
|
||||||
<!-- Transaktions -->
|
<!-- Transaktions -->
|
||||||
<mat-grid-tile colspan="1" rowspan="1" class="right-side">
|
<mat-grid-tile colspan="1" rowspan="1" class="right-side">
|
||||||
<div class="depotOverview">
|
<div class="depotOverviewDown">
|
||||||
<div class="heading fix-right-side">
|
<div class="heading fix-right-side">
|
||||||
<div class="vertical-center">Transaktionen</div>
|
<div class="vertical-center">Transaktionen</div>
|
||||||
<span class="spacer"></span>
|
<span class="spacer"></span>
|
||||||
@ -72,7 +72,7 @@
|
|||||||
<mat-icon>add</mat-icon>
|
<mat-icon>add</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<mat-card class="placeholder"
|
<mat-card class="placeholderRHS"
|
||||||
><div class="stockTable">
|
><div class="stockTable">
|
||||||
<table mat-table [dataSource]="dataSourceTransactions">
|
<table mat-table [dataSource]="dataSourceTransactions">
|
||||||
<!--- Note that these columns can be defined in any order.
|
<!--- Note that these columns can be defined in any order.
|
||||||
|
@ -15,12 +15,25 @@
|
|||||||
margin-right: 10%;
|
margin-right: 10%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.depotOverviewDown {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
margin-left: 5%;
|
||||||
|
margin-right: 10%;
|
||||||
|
}
|
||||||
|
|
||||||
.stockTable {
|
.stockTable {
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.stockTableLHS {
|
||||||
|
overflow: auto;
|
||||||
|
height: 83%;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
.heading {
|
.heading {
|
||||||
font-size: xx-large;
|
font-size: xx-large;
|
||||||
height: 10%;
|
height: 10%;
|
||||||
@ -63,6 +76,10 @@ table {
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.placeholderRHS {
|
||||||
|
height: 80%;
|
||||||
|
}
|
||||||
|
|
||||||
side-heading {
|
side-heading {
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
|
@ -87,7 +87,6 @@ export class DashboardComponent implements OnInit {
|
|||||||
openDialog(): void {
|
openDialog(): void {
|
||||||
const dialogRef = this.dialog.open(UserDialogComponent, {
|
const dialogRef = this.dialog.open(UserDialogComponent, {
|
||||||
width: '50vw',
|
width: '50vw',
|
||||||
height: '55vh',
|
|
||||||
data: {
|
data: {
|
||||||
symbol: this.symbol,
|
symbol: this.symbol,
|
||||||
time: this.time,
|
time: this.time,
|
||||||
|
@ -1 +0,0 @@
|
|||||||
|
|
Loading…
Reference in New Issue
Block a user