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
//! # Z-Index System
//!
//! Z-index management for Element Plus components.

/// Z-index levels
pub const INDEX_AUTO: &str = "auto";
pub const INDEX_BASE: &str = "100";
pub const INDEX_NORMAL: &str = "2000";
pub const INDEX_OVERLAY: &str = "2001";
pub const INDEX_POPUP: &str = "2002";
pub const INDEX_MESSAGE: &str = "9999";
pub const INDEX_TOP: &str = "10000";