diff options
author | 2019-11-11 05:37:51 +0100 | |
---|---|---|
committer | 2019-11-11 05:37:51 +0100 | |
commit | d4d14b68f47e9527554a728ebbba9b840832626a (patch) | |
tree | c37dc77445e96d39b119aa1cadb46fa738743795 /web/src/lib.rs | |
parent | ceb02f4a36769c488c2525db2fb73f092a6c2706 (diff) | |
download | iced-d4d14b68f47e9527554a728ebbba9b840832626a.tar.gz iced-d4d14b68f47e9527554a728ebbba9b840832626a.tar.bz2 iced-d4d14b68f47e9527554a728ebbba9b840832626a.zip |
Remove `padding` from `Container` for now
Diffstat (limited to 'web/src/lib.rs')
-rw-r--r-- | web/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/src/lib.rs b/web/src/lib.rs index 559a5af0..6252f2be 100644 --- a/web/src/lib.rs +++ b/web/src/lib.rs @@ -7,7 +7,7 @@ pub mod widget; pub use bus::Bus; pub use element::Element; -pub use iced_core::{Align, Background, Color, Justify, Length}; +pub use iced_core::{Align, Background, Color, Length}; pub use widget::*; pub trait Application { |