Skip to content

Commit

Permalink
fix: justify plugin values
Browse files Browse the repository at this point in the history
  • Loading branch information
arlyon committed Aug 25, 2022
1 parent 37263e7 commit 4555051
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/plugin.rs
Expand Up @@ -446,9 +446,9 @@ pub fn justify(rest: &str, _theme: &TailwindTheme) -> Option<ObjectLit> {
"start" => Some("flex-start"),
"end" => Some("flex-end"),
"center" => Some("center"),
"between" => Some("between"),
"around" => Some("around"),
"evenly" => Some("evenly"),
"between" => Some("space-between"),
"around" => Some("space-around"),
"evenly" => Some("space-evenly"),
_ => None,
}
.map(|v| to_lit(&[("justifyContent", v)]))
Expand Down

0 comments on commit 4555051

Please sign in to comment.