dioxus-element-plug 0.1.5

Element UI components for Dioxus applications with pure Rust styling system
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # Spacing System
//!
//! Complete spacing system for Element Plus components.

/// Base spacing units
pub const SPACING_XS: &str = "4px";
pub const SPACING_SM: &str = "8px";
pub const SPACING_MD: &str = "16px";
pub const SPACING_LG: &str = "24px";
pub const SPACING_XL: &str = "32px";
pub const SPACING_XXL: &str = "48px";

/// Responsive breakpoints
pub const BREAKPOINT_XS: &str = "768px";
pub const BREAKPOINT_SM: &str = "768px";
pub const BREAKPOINT_MD: &str = "992px";
pub const BREAKPOINT_LG: &str = "1200px";
pub const BREAKPOINT_XL: &str = "1920px";