Initial commit
This commit is contained in:
commit
cd689fde93
17 changed files with 1509 additions and 0 deletions
31
src/Components/Nav.fs
Normal file
31
src/Components/Nav.fs
Normal file
|
@ -0,0 +1,31 @@
|
|||
module DOT.Components.Nav
|
||||
|
||||
open Sutil
|
||||
open type Feliz.length
|
||||
|
||||
let view() =
|
||||
Html.div [
|
||||
Attr.style [
|
||||
Css.backgroundColor "oklch(0.2 0 0)"
|
||||
Css.displayFlex
|
||||
Css.justifyContentSpaceAround
|
||||
Css.alignItemsCenter
|
||||
Css.positionFixed
|
||||
Css.zIndex 5
|
||||
Css.top 0
|
||||
Css.height (rem 3)
|
||||
Css.width (vw 100)
|
||||
]
|
||||
|
||||
Html.div [
|
||||
Html.img [
|
||||
// TODO
|
||||
]
|
||||
]
|
||||
Html.div [
|
||||
|
||||
]
|
||||
Html.div [
|
||||
|
||||
]
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue