oxfmt 0.58.0
In a .css file, oxfmt space-separates the [0] array index in a Tailwind theme() call (it seems to treat [0] like an attribute selector). The result is invalid — Tailwind then errors with 'fontSize.af-md [0]' does not exist.
Before:
p {
font-size: theme(fontSize.af-md[0]);
}
After (oxfmt):
p {
font-size: theme(fontSize.af-md [0]);
}
oxfmt 0.58.0
In a
.cssfile, oxfmt space-separates the[0]array index in a Tailwindtheme()call (it seems to treat[0]like an attribute selector). The result is invalid — Tailwind then errors with'fontSize.af-md [0]' does not exist.Before:
After (
oxfmt):