diff --git a/src/app/app.css b/src/app/app.css index 73a1c7e..2c96a5f 100644 --- a/src/app/app.css +++ b/src/app/app.css @@ -1,46 +1,74 @@ :host { - display: flex; + display: flex; } .app-layout { - height: 100vh; + height: 100vh; } .top-nav { - line-height: 64px; + line-height: 64px; } .logo { - float: left; - height: 64px; - padding-right: 24px; - line-height: 64px; - background: #001529; + float: left; + height: 64px; + padding-right: 24px; + line-height: 64px; } .logo img { - display: inline-block; - height: 32px; - width: 32px; - vertical-align: middle; + display: inline-block; + height: 32px; + width: 32px; + vertical-align: middle; } .logo h1 { - display: inline-block; - margin: 0 0 0 15px; - color: #fff; - font-weight: 600; - font-size: 20px; - font-family: Avenir,Helvetica Neue,Arial,Helvetica,sans-serif; - vertical-align: middle; + display: inline-block; + margin: 0 0 0 15px; + color: #fff; + font-weight: 600; + font-size: 20px; + font-family: Avenir,Helvetica Neue,Arial,Helvetica,sans-serif; + vertical-align: middle; } nz-content { - padding: 24px 50px; + padding: 24px 50px; } .inner-content { - padding: 24px; - background: #fff; - height: 100%; + padding: 24px; + background: #fff; + height: 100%; } + +.header-container { + display: flex; + align-items: center; + justify-content: space-between; +} + +.logo { + display: flex; + align-items: center; +} + +.top-nav { + flex: 1; + margin-left: 40px; +} + +.right-icons { + display: flex; + align-items: center; + gap: 20px; + color: #fff; + font-size: 18px; + cursor: pointer; +} + +.right-icons nz-icon:hover { + color: #40a9ff; +} \ No newline at end of file diff --git a/src/app/app.html b/src/app/app.html index 8f2b8dc..8c565bd 100644 --- a/src/app/app.html +++ b/src/app/app.html @@ -57,9 +57,15 @@ Utilisateur -
welcome works!
\ No newline at end of file +hello work
\ No newline at end of file diff --git a/src/app/pages/welcome/welcome.ts b/src/app/pages/welcome/welcome.ts index 92e8bde..6ade90b 100644 --- a/src/app/pages/welcome/welcome.ts +++ b/src/app/pages/welcome/welcome.ts @@ -1,8 +1,13 @@ import { Component } from '@angular/core'; +import {ModalNav} from "../../components/modalNav/modalNav"; +import {NzIconDirective} from "ng-zorro-antd/icon"; @Component({ selector: 'app-welcome', - imports: [], + imports: [ + ModalNav, + NzIconDirective + ], templateUrl: './welcome.html', styleUrl: './welcome.css' })