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 20, 2022
1 parent 5d89855 commit b4c2e77
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions crates/swc_css_prefixer/src/prefixer.rs
Expand Up @@ -3409,6 +3409,13 @@ impl VisitMut for Prefixer {
js_word!("tab-size") => {
add_declaration!(Prefix::Moz, js_word!("-moz-tab-size"), None);
add_declaration!(Prefix::O, js_word!("-o-tab-size"), None);
"overflow-wrap" => {
add_declaration!("word-wrap", None);
}

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

js_word!("hyphens") => {
Expand Down

0 comments on commit b4c2e77

Please sign in to comment.