diff options
author | 2020-02-05 00:23:22 +0100 | |
---|---|---|
committer | 2020-02-05 00:23:22 +0100 | |
commit | 0030bcbd33f5c4db60aac826552042e46b51c691 (patch) | |
tree | 08f2ef54d673fb94d02b23644bbc3c204f80998b /web/src/widget/slider.rs | |
parent | 7b892eb3e11596925a2993bcc4175ac09ff3768a (diff) | |
download | iced-0030bcbd33f5c4db60aac826552042e46b51c691.tar.gz iced-0030bcbd33f5c4db60aac826552042e46b51c691.tar.bz2 iced-0030bcbd33f5c4db60aac826552042e46b51c691.zip |
Rename module `style` to `css` in `iced_web`
Diffstat (limited to '')
-rw-r--r-- | web/src/widget/slider.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/src/widget/slider.rs b/web/src/widget/slider.rs index 25c57933..843003e6 100644 --- a/web/src/widget/slider.rs +++ b/web/src/widget/slider.rs @@ -4,7 +4,7 @@ //! //! [`Slider`]: struct.Slider.html //! [`State`]: struct.State.html -use crate::{style, Bus, Element, Length, Widget}; +use crate::{Bus, Css, Element, Length, Widget}; use dodrio::bumpalo; use std::{ops::RangeInclusive, rc::Rc}; @@ -88,7 +88,7 @@ where &self, bump: &'b bumpalo::Bump, bus: &Bus<Message>, - _style_sheet: &mut style::Sheet<'b>, + _style_sheet: &mut Css<'b>, ) -> dodrio::Node<'b> { use dodrio::builder::*; use wasm_bindgen::JsCast; |