1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 17:23:37 +00:00
This commit is contained in:
Kyle Spearrin
2018-01-20 21:09:04 -05:00
parent 0753360988
commit 98552c8124
5 changed files with 13 additions and 4 deletions

1
src/app/app.d.ts vendored
View File

@@ -1 +1,2 @@
declare module '*.html';
declare function require(s: string): any;

View File

@@ -1,6 +1,8 @@
import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
require('../scss/styles.scss');
import { AppModule } from './app.module';
platformBrowserDynamic().bootstrapModule(AppModule);

6
src/scss/styles.scss Normal file
View File

@@ -0,0 +1,6 @@
html, body {
margin: 0;
padding: 0;
height: 100%;
background-color: gray;
}