summaryrefslogtreecommitdiffstats
path: root/style/src/container.rs
diff options
context:
space:
mode:
Diffstat (limited to 'style/src/container.rs')
-rw-r--r--style/src/container.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/style/src/container.rs b/style/src/container.rs
index a490c187..00649c25 100644
--- a/style/src/container.rs
+++ b/style/src/container.rs
@@ -1,5 +1,5 @@
//! Change the appearance of a container.
-use crate::core::{Background, Border, Color, Pixels};
+use crate::core::{Background, Border, Color, Pixels, Shadow};
/// The appearance of a container.
#[derive(Debug, Clone, Copy, Default)]
@@ -10,6 +10,8 @@ pub struct Appearance {
pub background: Option<Background>,
/// The [`Border`] of the container.
pub border: Border,
+ /// The [`Shadow`] of the container.
+ pub shadow: Shadow,
}
impl Appearance {