Introduce Border struct analogous to Shadow
This commit is contained in:
parent
4d502012b3
commit
25f182f933
44 changed files with 382 additions and 424 deletions
|
|
@ -17,6 +17,7 @@
|
|||
rustdoc::broken_intra_doc_links
|
||||
)]
|
||||
pub mod alignment;
|
||||
pub mod border;
|
||||
pub mod clipboard;
|
||||
pub mod event;
|
||||
pub mod font;
|
||||
|
|
@ -27,7 +28,6 @@ pub mod layout;
|
|||
pub mod mouse;
|
||||
pub mod overlay;
|
||||
pub mod renderer;
|
||||
pub mod shadow;
|
||||
pub mod svg;
|
||||
pub mod text;
|
||||
pub mod time;
|
||||
|
|
@ -37,7 +37,6 @@ pub mod window;
|
|||
|
||||
mod angle;
|
||||
mod background;
|
||||
mod border_radius;
|
||||
mod color;
|
||||
mod content_fit;
|
||||
mod element;
|
||||
|
|
@ -47,6 +46,7 @@ mod padding;
|
|||
mod pixels;
|
||||
mod point;
|
||||
mod rectangle;
|
||||
mod shadow;
|
||||
mod shell;
|
||||
mod size;
|
||||
mod vector;
|
||||
|
|
@ -54,7 +54,7 @@ mod vector;
|
|||
pub use alignment::Alignment;
|
||||
pub use angle::{Degrees, Radians};
|
||||
pub use background::Background;
|
||||
pub use border_radius::BorderRadius;
|
||||
pub use border::Border;
|
||||
pub use clipboard::Clipboard;
|
||||
pub use color::Color;
|
||||
pub use content_fit::ContentFit;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue