pagetop/extensions/pagetop-bootsier/src/theme/aux.rs

21 lines
456 B
Rust

//! Colección de elementos auxiliares de Bootstrap para Bootsier.
mod breakpoint;
pub use breakpoint::BreakPoint;
mod color;
pub use color::Color;
pub use color::{BgColor, BorderColor, ButtonColor, TextColor};
mod opacity;
pub use opacity::Opacity;
pub use opacity::{BgOpacity, BorderOpacity, TextOpacity};
mod border;
pub use border::{Border, BorderSize};
mod rounded;
pub use rounded::{Rounded, RoundedRadius};
mod size;
pub use size::ButtonSize;