This commit is contained in:
Lorenz Hilpert
2020-06-29 17:45:15 +02:00
parent 6795bc560e
commit b0a42948c8
2 changed files with 16 additions and 0 deletions

View File

@@ -6,6 +6,10 @@ import { AppModule } from './app/app.module';
import { environment } from './environments/environment';
import 'hammerjs';
import { AppConfiguration } from './app/app-configuration';
import { registerLocaleData } from '@angular/common';
import localeDe from '@angular/common/locales/de';
registerLocaleData(localeDe, 'de');
if (environment.production) {
enableProdMode();

View File

@@ -17,3 +17,15 @@
.isa-font-lightgrey {
color: $text-lightgrey;
}
.isa-text-left {
text-align: left;
}
.isa-text-center {
text-align: center;
}
.isa-text-right {
text-align: right;
}