mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 20:57:17 +01:00
Implement redux.
This commit is contained in:
parent
9d8a2406e1
commit
5d4ff5cfa4
31 changed files with 341 additions and 85 deletions
25
components/Header.module.css
Normal file
25
components/Header.module.css
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
.header {
|
||||
display: flex;
|
||||
height: 80px;
|
||||
}
|
||||
|
||||
.header > div {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
.nav {
|
||||
list-style: none;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav > * {
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
margin-left: 40px;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue