Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
warehouse-management
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ascend
warehouse-management
Commits
3cf4295f
Commit
3cf4295f
authored
May 08, 2021
by
Darrick Yong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add logo to header
parent
4986adae
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
3 deletions
+25
-3
filter.css
frontend/public/stylesheets/filter.css
+2
-2
header.css
frontend/public/stylesheets/header.css
+11
-0
Image.jsx
frontend/src/components/atoms/Image.jsx
+5
-0
Header.jsx
frontend/src/components/header/Header.jsx
+7
-1
No files found.
frontend/public/stylesheets/filter.css
View file @
3cf4295f
...
@@ -49,11 +49,11 @@
...
@@ -49,11 +49,11 @@
}
}
.filter-all
:hover
{
.filter-all
:hover
{
background
:
#
E2C391
;
background
:
#
2b4162
;
color
:
white
;
color
:
white
;
}
}
.filter-all.selected
{
.filter-all.selected
{
background
:
#
E2C391
;
background
:
#
2b4162
;
}
}
.filter-rec
:hover
{
.filter-rec
:hover
{
background
:
#2292A4
;
background
:
#2292A4
;
...
...
frontend/public/stylesheets/header.css
View file @
3cf4295f
...
@@ -9,3 +9,14 @@
...
@@ -9,3 +9,14 @@
font-size
:
28px
;
font-size
:
28px
;
font-weight
:
700
;
font-weight
:
700
;
}
}
.header
>
div
{
display
:
flex
;
align-items
:
center
;
}
.header
img
{
margin-right
:
10px
;
width
:
32px
;
height
:
32px
;
}
\ No newline at end of file
frontend/src/components/atoms/Image.jsx
0 → 100644
View file @
3cf4295f
const
Image
=
({
src
})
=>
(
<
img
src=
{
src
}
alt=
""
/>
)
export
default
Image
;
\ No newline at end of file
frontend/src/components/header/Header.jsx
View file @
3cf4295f
import
React
from
"react"
;
import
React
from
"react"
;
import
Image
from
"../atoms/Image"
;
import
Logout
from
"../session/Logout"
;
import
Logout
from
"../session/Logout"
;
const
Header
=
()
=>
{
const
Header
=
()
=>
{
return
(
return
(
<
div
className=
"header"
>
<
div
className=
"header"
>
<
div
>
Warehouse Management
</
div
>
<
div
>
<
Image
src=
"https://www.flaticon.com/svg/vstatic/svg/2562/2562296.svg?token=exp=1620448865~hmac=b6bb0b0a072e16f423c481f7a3175fa9"
/>
{
" "
}
<
div
>
Warehouse Management
</
div
>
</
div
>
<
Logout
/>
<
Logout
/>
</
div
>
</
div
>
);
);
...
...
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