aboutsummaryrefslogtreecommitdiff
path: root/src/container.rs
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-07-31 13:41:09 +0200
committerpml68 <contact@pml68.dev>2025-07-31 13:41:09 +0200
commitc112b076cb69eb138ce1bbbc2dce637455b5c6b5 (patch)
tree24778f9223f9f7243d8a760c55363d7289397945 /src/container.rs
parentfeat: impl `table::Catalog` for `Theme` (diff)
downloadiced_material-c112b076cb69eb138ce1bbbc2dce637455b5c6b5.tar.gz
fix: `container::outlined` had a 0-width border
Diffstat (limited to 'src/container.rs')
-rw-r--r--src/container.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/container.rs b/src/container.rs
index 5c253ad..3b63d5f 100644
--- a/src/container.rs
+++ b/src/container.rs
@@ -193,6 +193,7 @@ pub fn outlined(theme: &Theme) -> Style {
Style {
border: Border {
color: theme.colors().outline.color,
+ width: 2.0,
..base.border
},
..base