Skip to main content

azul_css/props/style/
mod.rs

1//! Style properties (visual effects, backgrounds, borders, etc.)
2
3pub mod azul_exclusion;
4pub mod background;
5pub mod border;
6pub mod border_radius;
7pub mod box_shadow;
8pub mod content;
9pub mod effects;
10pub mod filter;
11pub mod lists;
12pub mod scrollbar;
13pub mod selection;
14pub mod text;
15pub mod transform;
16
17pub use self::{
18    azul_exclusion::*, background::*, border::*, border_radius::*, box_shadow::*, content::*,
19    effects::*, filter::*, lists::*, scrollbar::*, selection::*, text::*, transform::*,
20};