💄 (bootsier): Añade estilos y mejora docs de Form

This commit is contained in:
Manuel Cillero 2026-05-02 11:57:05 +02:00 committed by Manuel Cillero
parent 3ceb8892a2
commit 4b50e043e0
4 changed files with 100 additions and 15 deletions

View file

@ -11,9 +11,9 @@ use pagetop::prelude::*;
/// ```rust
/// # use pagetop::prelude::*;
/// # use pagetop_bootsier::prelude::*;
/// let volumen = form::Range::new()
/// let volume = form::Range::new()
/// .with_name("volume")
/// .with_label(L10n::n("Volumen"))
/// .with_label(L10n::n("Volume"))
/// .with_min(Some(0.0))
/// .with_max(Some(100.0))
/// .with_step(Some(5.0))