Skip to content
Snippets Groups Projects
Commit 8d36a788 authored by Taddeüs Kroes's avatar Taddeüs Kroes
Browse files

Added hotfix for border:none -> border:0 optimisation (planning to do something more extensive)

parent b3d2ee53
No related branches found
No related tags found
No related merge requests found
......@@ -55,5 +55,7 @@ let compress =
| Expr value -> Expr (shorten_expr value)
| Declaration ("font-weight", value, imp) ->
Declaration ("font-weight", shorten_font_weight value, imp)
| Declaration (("border" | "outline") as name, Ident "none", imp) ->
Declaration (name, Number (0., None), imp)
| v -> v
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment