Add min width and add some more margins

This commit is contained in:
Marcel Schwarz 2021-01-03 04:41:23 +01:00
parent 8724eaf914
commit 89d4738da5
3 changed files with 6 additions and 2 deletions

View File

@ -17,7 +17,10 @@
<div class="px-5 py-3" style="background: #2f2f2f"> <div class="px-5 py-3" style="background: #2f2f2f">
<div> <div>
<div class="row mb-3"> <div class="row mb-3">
<app-user-input (startEndDate)="onSubmit($event)" class="col-xl-5 col-lg-6 col-md-12 mb-md-3"></app-user-input> <app-user-input
(startEndDate)="onSubmit($event)"
class="col-xl-5 col-lg-6 col-md-12 mb-md-3 mb-sm-3 mb-3">
</app-user-input>
<app-mini-map class="col-xl-7 col-lg-6 col-md-12"></app-mini-map> <app-mini-map class="col-xl-7 col-lg-6 col-md-12"></app-mini-map>
</div> </div>

View File

@ -1,5 +1,5 @@
<div class="row"> <div class="row">
<div class="col-lg-6 col-md-12 mb-md-3"> <div class="col-lg-6 col-md-12 mb-md-3 mb-sm-3 mb-3">
<table [dataSource]="stationToSource" class="mat-elevation-z0 w-100" mat-table> <table [dataSource]="stationToSource" class="mat-elevation-z0 w-100" mat-table>
<ng-container matColumnDef="select"> <ng-container matColumnDef="select">
<th *matHeaderCellDef mat-header-cell></th> <th *matHeaderCellDef mat-header-cell></th>

View File

@ -1,5 +1,6 @@
html, body { html, body {
height: 100vh; height: 100vh;
min-width: 600px;
} }
body { body {