Skip to content

Commit

Permalink
feat: add missing mso-table-?space properties
Browse files Browse the repository at this point in the history
  • Loading branch information
cossssmin committed Mar 12, 2022
1 parent 28ade37 commit e1b9314
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,18 @@ const mso = plugin(
// mso-text-indent-alt
createUtilities('mso-text-indent-alt', 'mso-text-indent-alt', key, value, true)

// mso-table-lspace
createUtilities('mso-table-lspace', 'mso-table-lspace', key, value, true)
// mso-table-tspace
createUtilities('mso-table-tspace', 'mso-table-tspace', key, value, true)

// mso-table-rspace
createUtilities('mso-table-rspace', 'mso-table-rspace', key, value, true)

// mso-table-bspace
createUtilities('mso-table-bspace', 'mso-table-bspace', key, value, true)

// mso-table-lspace
createUtilities('mso-table-lspace', 'mso-table-lspace', key, value, true)

// mso-font-width
createUtilities('mso-font-width', 'mso-font-width', key, value, true)
})
Expand Down

0 comments on commit e1b9314

Please sign in to comment.