Skip to content

Commit

Permalink
refactor: rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait committed Dec 19, 2022
1 parent 5c311d4 commit 734267e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions crates/swc_css_prefixer/src/prefixer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3345,11 +3345,10 @@ impl VisitMut for Prefixer {
add_declaration!(Prefix::O, js_word!("-o-object-position"), None);
}

"overflow-wrap" => {
add_declaration!("word-wrap", None);
js_word!("overflow-wrap") => {
add_declaration!(js_word!("word-wrap"), None);
}

"tab-size" => {
js_word!("tab-size") => {
add_declaration!(Prefix::Moz, js_word!("-moz-tab-size"), None);
add_declaration!(Prefix::O, js_word!("-o-tab-size"), None);
Expand Down

0 comments on commit 734267e

Please sign in to comment.