create style.ts to set elevation for all dashboard components

This commit is contained in:
Jesse Lucas
2020-03-29 16:51:12 -04:00
parent eaffbc0f92
commit aebcc495f9
11 changed files with 37 additions and 20 deletions
@@ -1,4 +1,5 @@
import { Component, OnInit } from '@angular/core';
import { cardElevation } from '../../style';
@Component({
selector: 'app-device-chart',
@@ -6,6 +7,8 @@ import { Component, OnInit } from '@angular/core';
styleUrls: ['./device-chart.component.scss']
})
export class DeviceChartComponent implements OnInit {
chartID: string = 'devicesChart';
elevation: string = cardElevation;
constructor() { }