Skip to main content

dioxus_element_plug/styles/
shadows.rs

1//! # Shadow System
2//!
3//! Complete shadow system for Element Plus components.
4
5/// Base shadows
6pub const BOX_SHADOW_BASE: &str = "0 2px 4px rgba(0, 0, 0, .12), 0 0 6px rgba(0, 0, 0, .04)";
7pub const BOX_SHADOW_LIGHT: &str = "0 2px 12px 0 rgba(0, 0, 0, 0.1)";
8pub const BOX_SHADOW_LIGHTER: &str = "0 1px 3px 0 rgba(0, 0, 0, 0.1)";
9pub const BOX_SHADOW_DARK: &str = "0 2px 4px rgba(0, 0, 0, .12), 0 0 6px rgba(0, 0, 0, .12)";