this repo has no description
lustre frontent oat-ui gleam
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

:lipstick: add base oat style

+25 -1
+24
src/client.css
··· 1 1 @import "tailwindcss"; 2 + 3 + :root { 4 + --background: #fff; 5 + --foreground: #09090b; 6 + --card: #fff; 7 + --card-foreground: #09090b; 8 + --primary: #574747; 9 + --primary-foreground: #fafafa; 10 + --secondary: #f4f4f5; 11 + --secondary-foreground: #574747; 12 + --muted: #f4f4f5; 13 + --muted-foreground: #71717a; 14 + --faint: #fafafa; 15 + --accent: #f4f4f5; 16 + --danger: #df514c; 17 + --danger-foreground: #fafafa; 18 + --success: #4caf50; 19 + --success-foreground: #fafafa; 20 + --warning: #ff8c00; 21 + --warning-foreground: #09090b; 22 + --border: #d4d4d8; 23 + --input: #d4d4d8; 24 + --ring: #574747; 25 + }
+1 -1
src/client/page/navbar.gleam
··· 6 6 pub type Msg 7 7 8 8 pub fn view(_session: session.Session) -> element.Element(Msg) { 9 - html.nav([attr.data("topnav", ""), class("p-4 border border-gray-500")], [ 9 + html.nav([attr.data("topnav", ""), class("p-4 border-b")], [ 10 10 html.p([], [html.text("navbar")]), 11 11 ]) 12 12 }