tailwind-rs-core 0.15.4

Core types and utilities for tailwind-rs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Sizing utilities for tailwind-rs
//!
//! This module provides utilities for width, height, aspect ratio, and other sizing utilities.

pub mod aspect_ratio;
pub mod fraction;
pub mod grid_fraction;
pub mod height;
pub mod sizing_value;
pub mod width;

// Re-export all the main types and traits
pub use aspect_ratio::AspectRatioUtilities;
pub use fraction::Fraction;
pub use grid_fraction::GridFraction;
pub use height::HeightUtilities;
pub use sizing_value::SizingValue;
pub use width::WidthUtilities;