♻️ (bootsier): Elimina prelude para usar theme

This commit is contained in:
Manuel Cillero 2026-05-10 00:31:33 +02:00
parent bd8a34341d
commit a0805ed0fb
43 changed files with 315 additions and 348 deletions

View file

@ -76,7 +76,7 @@ impl ButtonColor {
/// # Ejemplos
///
/// ```rust
/// # use pagetop_bootsier::prelude::*;
/// # use pagetop_bootsier::theme::*;
/// assert_eq!(
/// ButtonColor::Background(Color::Primary).to_class(),
/// "btn-primary"
@ -132,7 +132,7 @@ impl ButtonSize {
/// # Ejemplos
///
/// ```rust
/// # use pagetop_bootsier::prelude::*;
/// # use pagetop_bootsier::theme::*;
/// assert_eq!(ButtonSize::Small.to_class(), "btn-sm");
/// assert_eq!(ButtonSize::Large.to_class(), "btn-lg");
/// assert_eq!(ButtonSize::Default.to_class(), "");