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
//! # Shadow System
//!
//! Complete shadow system for Element Plus components.

/// Base shadows
pub const BOX_SHADOW_BASE: &str = "0 2px 4px rgba(0, 0, 0, .12), 0 0 6px rgba(0, 0, 0, .04)";
pub const BOX_SHADOW_LIGHT: &str = "0 2px 12px 0 rgba(0, 0, 0, 0.1)";
pub const BOX_SHADOW_LIGHTER: &str = "0 1px 3px 0 rgba(0, 0, 0, 0.1)";
pub const BOX_SHADOW_DARK: &str = "0 2px 4px rgba(0, 0, 0, .12), 0 0 6px rgba(0, 0, 0, .12)";