Skip to content

Commit

Permalink
fix: rename grid-auto-flow col to column
Browse files Browse the repository at this point in the history
  • Loading branch information
arlyon committed Feb 20, 2023
1 parent 70b279c commit b54c3cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/tailwind-parse/src/eval/plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -746,8 +746,8 @@ pub fn grid<'a>(
(Some(Grid::Rows), Some(rest)) => return grid_t_row(rest, theme),
(Some(Grid::FlowRow), None) => [("gridAutoFlow", "row")],
(Some(Grid::FlowRowDense), None) => [("gridAutoFlow", "row dense")],
(Some(Grid::FlowCol), None) => [("gridAutoFlow", "col")],
(Some(Grid::FlowColDense), None) => [("gridAutoFlow", "col dense")],
(Some(Grid::FlowCol), None) => [("gridAutoFlow", "column")],
(Some(Grid::FlowColDense), None) => [("gridAutoFlow", "column dense")],
(Some(Grid::FlowDense), None) => [("gridAutoFlow", "dense")],
(None, None) => [("display", "grid")],
_ => return Err(vec![]),
Expand Down

0 comments on commit b54c3cb

Please sign in to comment.