This repository has no description
lustre gleam
0

Configure Feed

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

:lipstick: add shadow to hovered leader

author
kacaii.dev
date (Mar 31, 2026, 9:04 PM -0300) commit 8b309668 parent 7bc2f23d change-id tzqtppvo
+5 -6
+4 -5
client/src/client/page/register_crew.gleam
··· 130 130 <> "&limit=2" 131 131 132 132 let effect = 133 - rsvp.get( 134 - api, 135 - rsvp.expect_json(decode.list(user.decoder()), ApiSuggestedLeaders), 136 - ) 133 + decode.list(user.decoder()) 134 + |> rsvp.expect_json(ApiSuggestedLeaders) 135 + |> rsvp.get(api, _) 137 136 138 137 #(model, effect) 139 138 } ··· 244 243 on_click, 245 244 hover_style, 246 245 class("flex flex-col items-center p-4"), 247 - class("hover:border-accent"), 246 + class("hover:shadow-xl hover:border-accent"), 248 247 ] 249 248 250 249 let card_header =
+1 -1
client/src/client/ui/sidebar.gleam
··· 19 19 pub fn view(session: Session) -> element.Element(Msg) { 20 20 let attributes = [ 21 21 class("flex flex-col justify-between"), 22 - class("px-4 pt-8 pb-4 drop-shadow-xl bg-foreground"), 22 + class("px-4 pt-8 pb-4 shadow-xl bg-foreground"), 23 23 ] 24 24 25 25 oat_sidebar.aside(attributes, [view_user_info(session), view_logout(session)])