fix colors issues in dashboard (#1591)

This commit is contained in:
Abbie Petchtes
2018-06-08 11:55:31 -07:00
committed by GitHub
parent 2bbb2842e5
commit 0ae9b36d93
4 changed files with 3 additions and 5 deletions

View File

@@ -29,7 +29,6 @@ export class DatabaseDashboardPage extends DashboardPage implements OnInit {
background_color: colors.editorBackground,
border: 'none',
fontSize: '14px',
fontWeight: '200',
padding: '5px 0 0 0',
provider: undefined,
edition: undefined

View File

@@ -29,7 +29,6 @@ export class ServerDashboardPage extends DashboardPage implements OnInit {
background_color: colors.editorBackground,
border: 'none',
fontSize: '14px',
fontWeight: '200',
padding: '5px 0 0 0',
provider: undefined,
edition: undefined

View File

@@ -9,7 +9,7 @@
<span #child style="white-space : nowrap; width: fit-content">
<ng-template ngFor let-item [ngForOf]="properties">
<span style="margin-left: 10px; display: inline-block;">
<div style="font-size: 11px; font-weight: lighter">{{item.displayName}}</div>
<div style="font-size: 11px;">{{item.displayName}}</div>
<div>{{item.value}}</div>
</span>
</ng-template>