diff options
| author | pml68 <contact@pml68.dev> | 2025-07-31 13:41:09 +0200 |
|---|---|---|
| committer | pml68 <contact@pml68.dev> | 2025-07-31 13:41:09 +0200 |
| commit | c112b076cb69eb138ce1bbbc2dce637455b5c6b5 (patch) | |
| tree | 24778f9223f9f7243d8a760c55363d7289397945 /src | |
| parent | feat: impl `table::Catalog` for `Theme` (diff) | |
| download | iced_material-c112b076cb69eb138ce1bbbc2dce637455b5c6b5.tar.gz | |
fix: `container::outlined` had a 0-width border
Diffstat (limited to '')
| -rw-r--r-- | src/container.rs | 1 |
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 |
