From 4555051b9d66b72a9788ab3db3007febbe9beb30 Mon Sep 17 00:00:00 2001 From: Alexander Lyon Date: Wed, 24 Aug 2022 22:14:17 +0100 Subject: [PATCH] fix: justify plugin values --- src/plugin.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugin.rs b/src/plugin.rs index 5c65b1e..7a83fec 100644 --- a/src/plugin.rs +++ b/src/plugin.rs @@ -446,9 +446,9 @@ pub fn justify(rest: &str, _theme: &TailwindTheme) -> Option { "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)]))