Added some styling

This commit is contained in:
2019-04-11 19:28:14 -04:00
parent c568f1c9d2
commit 48d3d7b47b
13 changed files with 7383 additions and 7261 deletions

View File

@ -0,0 +1,12 @@
import {NgModule} from '@angular/core';
import {MatCardModule} from '@angular/material';
const MODULES = [
MatCardModule
];
@NgModule({
imports: [MODULES],
exports: [MODULES]
})
export class MaterialModule {}