pub mod flex;
pub mod fragmentation;
pub mod grid;
pub mod image;
pub mod layout;
pub mod list;
pub mod table;
pub mod transform;
pub mod typography;
pub mod visual;
pub use flex::*;
pub use fragmentation::*;
pub use grid::*;
pub use image::*;
pub use layout::*;
pub use list::*;
pub use table::*;
pub use transform::*;
pub use typography::*;
pub use visual::*;
#[derive(Debug, Clone, PartialEq, Default)]
pub struct ResolvedStyle {
pub layout: LayoutStyle,
pub flex: FlexStyle,
pub grid: GridStyle,
pub typography: TypographyStyle,
pub visual: VisualStyle,
pub fragmentation: FragmentationStyle,
pub table: TableCellStyle,
pub list: ListStyle,
pub image: ImageStyle,
pub transform: Option<Transform>,
}