Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
keithamus committed Nov 10, 2024
1 parent decbf91 commit bcb74de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/hdx_ast/src/css/values/logical/types.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pub(crate) use crate::css::values::sizing::{Width, MinWidth, MaxWidth};
pub(crate) use crate::css::values::r#box::{MarginTop, PaddingTop};
pub(crate) use crate::css::values::sizing::{MaxWidth, MinWidth, Width};
2 changes: 1 addition & 1 deletion crates/hdx_ast/src/css/values/sizing/impls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ pub(crate) use crate::traits::StyleValue;
pub(crate) use hdx_proc_macro::*;

use super::types::LengthPercentage;
use super::{Width, MinWidth};
use super::{MinWidth, Width};

// shortcuts for logical properties to resolve to 0
impl Width {
Expand Down

0 comments on commit bcb74de

Please sign in to comment.