Use generics for scroll-snap-points-*

This commit is contained in:
Anthony Ramine 2017-06-06 14:28:24 +02:00
parent bc1eef8f5e
commit 195e98e745
8 changed files with 122 additions and 110 deletions

View file

@ -28,6 +28,8 @@ pub use self::background::BackgroundSize;
pub use self::border::{BorderImageSlice, BorderImageWidth, BorderImageSideWidth};
pub use self::border::{BorderRadius, BorderCornerRadius};
pub use self::image::{Gradient, GradientItem, ImageLayer, LineDirection, Image, ImageRect};
#[cfg(feature = "gecko")]
pub use self::gecko::ScrollSnapPoint;
pub use self::rect::LengthOrNumberRect;
pub use super::{Auto, Either, None_};
#[cfg(feature = "gecko")]
@ -46,6 +48,8 @@ pub mod background;
pub mod basic_shape;
pub mod border;
pub mod image;
#[cfg(feature = "gecko")]
pub mod gecko;
pub mod length;
pub mod position;
pub mod rect;