dioxus_element_plug/styles/spacing.rs
1//! # Spacing System
2//!
3//! Complete spacing system for Element Plus components.
4
5/// Base spacing units
6pub const SPACING_XS: &str = "4px";
7pub const SPACING_SM: &str = "8px";
8pub const SPACING_MD: &str = "16px";
9pub const SPACING_LG: &str = "24px";
10pub const SPACING_XL: &str = "32px";
11pub const SPACING_XXL: &str = "48px";
12
13/// Responsive breakpoints
14pub const BREAKPOINT_XS: &str = "768px";
15pub const BREAKPOINT_SM: &str = "768px";
16pub const BREAKPOINT_MD: &str = "992px";
17pub const BREAKPOINT_LG: &str = "1200px";
18pub const BREAKPOINT_XL: &str = "1920px";