Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Sistema de Gerenciamento de projetos - TCE
SGP-Frontend
Commits
207ab966
Commit
207ab966
authored
7 months ago
by
Thomas Mundstock
Browse files
Options
Download
Email Patches
Plain Diff
Review Adjustments
parent
3049abed
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
src/app/app.component.css
+0
-6
src/app/app.component.css
src/app/app.component.html
+1
-0
src/app/app.component.html
src/app/app.component.ts
+2
-1
src/app/app.component.ts
src/app/components/navigation-bar/navigation-bar.component.css
+11
-17
...pp/components/navigation-bar/navigation-bar.component.css
src/app/components/navigation-bar/navigation-bar.component.html
+30
-16
...p/components/navigation-bar/navigation-bar.component.html
with
44 additions
and
40 deletions
+44
-40
src/app/app.component.css
View file @
207ab966
.lexend
{
font-family
:
"Lexend"
,
sans-serif
;
font-optical-sizing
:
auto
;
font-weight
:
<
weight
>
;
font-style
:
normal
;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/app/app.component.html
View file @
207ab966
<main
class=
"main"
>
<app-navigation-bar
[hasSelectedProject]=
"true"
></app-navigation-bar>
<app-base-input
label=
"Username"
type=
"text"
...
...
This diff is collapsed.
Click to expand it.
src/app/app.component.ts
View file @
207ab966
import
{
Component
}
from
'
@angular/core
'
;
import
{
RouterOutlet
}
from
'
@angular/router
'
;
import
{
BaseInputComponent
}
from
'
./components/base-input/base-input.component
'
;
import
{
NavigationBarComponent
}
from
'
./components/navigation-bar/navigation-bar.component
'
;
@
Component
({
selector
:
'
app-root
'
,
standalone
:
true
,
imports
:
[
RouterOutlet
,
BaseInputComponent
],
imports
:
[
RouterOutlet
,
BaseInputComponent
,
NavigationBarComponent
],
templateUrl
:
'
./app.component.html
'
,
styleUrl
:
'
./app.component.css
'
,
})
...
...
This diff is collapsed.
Click to expand it.
src/app/components/navigation-bar/navigation-bar.component.css
View file @
207ab966
body
{
margin
:
0
;
padding
:
0
;
width
:
100%
;
height
:
100%
;
}
.header
{
display
:
flex
;
justify-content
:
space-between
;
align-items
:
center
;
background-color
:
var
(
--secondary
);
padding
:
24px
;
margin
:
0
;
padding
:
0
;
display
:
flex
;
justify-content
:
space-between
;
align-items
:
center
;
background-color
:
var
(
--secondary
);
padding
:
24px
;
}
.right-section
{
display
:
flex
;
display
:
flex
;
}
.icon-right
{
padding-left
:
40px
;
padding-left
:
40px
;
}
.icon-person
{
padding-left
:
30px
;
}
\ No newline at end of file
padding-left
:
30px
;
}
This diff is collapsed.
Click to expand it.
src/app/components/navigation-bar/navigation-bar.component.html
View file @
207ab966
<body>
<header
class=
"header"
>
<img
class=
"brand-logo"
src=
"assets/navigation-bar-icons/brand.png"
alt=
"Brand Logo"
>
<div
class=
"right-section"
>
<div
*ngIf=
"hasSelectedProject; else noImage"
>
<img
class=
"icon-right"
src=
"assets/navigation-bar-icons/icon-notifications.png"
alt=
"Notifications Icon"
>
<img
class=
"icon-right"
src=
"assets/navigation-bar-icons/icon-settings.png"
alt=
"Settings Icon"
>
</div>
<ng-template
#noImage
></ng-template>
<div>
<img
class=
"icon-person"
src=
"assets/navigation-bar-icons/icon-person.png"
alt=
"Person Icon"
>
</div>
</div>
</header>
</body>
\ No newline at end of file
<header
class=
"header"
>
<img
class=
"brand-logo"
src=
"assets/navigation-bar-icons/brand.png"
alt=
"Brand Logo"
/>
<div
class=
"right-section"
>
<div
*ngIf=
"hasSelectedProject; else noImage"
>
<img
class=
"icon-right"
src=
"assets/navigation-bar-icons/icon-notifications.png"
alt=
"Notifications Icon"
/>
<img
class=
"icon-right"
src=
"assets/navigation-bar-icons/icon-settings.png"
alt=
"Settings Icon"
/>
</div>
<ng-template
#noImage
></ng-template>
<div>
<img
class=
"icon-person"
src=
"assets/navigation-bar-icons/icon-person.png"
alt=
"Person Icon"
/>
</div>
</div>
</header>
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help