This repository has no description
lustre gleam
0

Configure Feed

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

:recycle: add default styling for `select` and `input`

author
kacaii.dev
date (Apr 1, 2026, 3:39 PM -0300) commit da4a590a parent 1f991635 change-id xsolmqqu
+15 -6
+14
client/src/client.css
··· 14 14 15 15 --color-accent: #f2cdcd; 16 16 } 17 + 18 + @layer base { 19 + input { 20 + &::placeholder { 21 + color: var(--color-faint); 22 + } 23 + 24 + border-radius: var(--radius-md); 25 + } 26 + 27 + select { 28 + border-radius: var(--radius-md); 29 + } 30 + }
+1 -3
client/src/client/page/register_crew.gleam
··· 187 187 attr.value(model.crew_leader_email), 188 188 attr.placeholder("leader@email.com"), 189 189 190 - class("placeholder:text-faint"), 191 190 event.on_input(UserTypedLeaderEmail), 192 191 ] 193 192 ··· 202 201 button.outline(), 203 202 attr.disabled(email_is_empty || email_is_too_short), 204 203 205 - // magic number? 206 - class("h-11"), 204 + class("h-full"), 207 205 class("not-disabled:hover:text-background"), 208 206 ] 209 207
-1
client/src/client/page/signup.gleam
··· 351 351 352 352 let attributes = [ 353 353 attr.id("input-role"), 354 - class("rounded-md"), 355 354 356 355 attr.value(model.user_role |> role.to_string), 357 356 event.on_input(on_input),
-2
client/src/client/ui/input.gleam
··· 32 32 } 33 33 34 34 let input_attributes = [ 35 - class("rounded-md"), 36 - class("placeholder:text-faint"), 37 35 event.on_input(on_input), 38 36 39 37 attr.placeholder(field.placeholder),