Skip to main content

stylex_css_parser/properties/
mod.rs

1/*!
2CSS property parsers.
3
4This module contains parsers for specific CSS properties that require complex parsing logic.
5Each property has its own module with specialized parsing for that property's syntax.
6*/
7
8pub mod border_radius;
9pub mod box_shadow;
10pub mod transform;
11
12pub use border_radius::{BorderRadiusIndividual, BorderRadiusShorthand};
13pub use box_shadow::{BoxShadow, BoxShadowList};
14pub use transform::Transform;