This commit is contained in:
2018-03-07 00:15:27 -05:00
parent 7d5bf0f7ee
commit 164b1e5197
3 changed files with 6 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
import { NgModule, enableProdMode, ErrorHandler } from '@angular/core';
import { NgModule, ErrorHandler } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { HttpModule } from '@angular/http';
import { IonicApp, IonicModule, IonicErrorHandler } from 'ionic-angular';
@@ -15,8 +15,6 @@ import { TabsPage } from '../pages/tabs/tabs';
import { StatusBar } from '@ionic-native/status-bar';
import { SplashScreen } from '@ionic-native/splash-screen';
enableProdMode();
@NgModule({
declarations: [
Groundr,

View File

@@ -72,11 +72,10 @@ ion-title {
}
ion-app.app-root {
height: 0;
height: 480px;
margin: 50% auto auto 50%;
max-width: 320px;
padding-bottom: 66.666%;
position: relative;
transform: translate3d(-50%, -50%, 0);
width: 320px;
}
}

View File

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