diff --git a/.angular-cli.json b/.angular-cli.json index f2dadbe..c051455 100644 --- a/.angular-cli.json +++ b/.angular-cli.json @@ -8,7 +8,7 @@ "root": "src", "outDir": "dist", "assets": [ - "assets", + "img", "i18n", "favicon.ico" ], diff --git a/package.json b/package.json index 1542a45..81b9522 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "uds", - "version": "0.0.0", - "license": "MIT", + "version": "3.0.0", + "license": "BSD-3-Clause", "scripts": { "ng": "ng", "start": "ng serve --host 172.27.0.1 --port 9000", diff --git a/src/app/app.component.css b/src/app/app.component.css index e69de29..ba7b547 100644 --- a/src/app/app.component.css +++ b/src/app/app.component.css @@ -0,0 +1,3 @@ +.container { + margin-top: 64px; +} diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 41b471c..6a3f25b 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -9,6 +9,8 @@ import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; import { NavbarComponent } from './navbar/navbar.component'; import { TranslateDirective } from './translate.directive'; +// Service providers +import { UdsApiService } from './uds-api.service'; @NgModule({ declarations: [ @@ -22,7 +24,7 @@ import { TranslateDirective } from './translate.directive'; AppRoutingModule, NgbModule.forRoot() ], - providers: [], + providers: [UdsApiService], bootstrap: [AppComponent] }) export class AppModule { } diff --git a/src/app/navbar/navbar.component.css b/src/app/navbar/navbar.component.css index e69de29..cd34c4e 100644 --- a/src/app/navbar/navbar.component.css +++ b/src/app/navbar/navbar.component.css @@ -0,0 +1,10 @@ +a.dropdown-toggle { + cursor: pointer; +} + +.navbar-img { + + width: 2em; + margin-top: -8px; + +} diff --git a/src/app/navbar/navbar.component.html b/src/app/navbar/navbar.component.html index 84b681f..e563f4a 100644 --- a/src/app/navbar/navbar.component.html +++ b/src/app/navbar/navbar.component.html @@ -1,18 +1,18 @@