Skip to content

Commit

Permalink
feat: add overflow-ellipsis and overflow-clip utilities (close #109)
Browse files Browse the repository at this point in the history
  • Loading branch information
muhammadsammy committed Jan 5, 2021
1 parent 53f4973 commit d8fd228
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/cli/lib/non-configurable/typography.ts
Expand Up @@ -22,6 +22,8 @@ const textDecoration = ['underline', 'line-through', 'no-underline'];

const textTransform = ['uppercase', 'lowercase', 'capitalize', 'normal-case'];

const textOverflow = ['truncate', 'overflow-ellipsis', 'overflow-clip'];

const verticalAlign = [
'align-baseline',
'align-top',
Expand All @@ -39,7 +41,7 @@ const whitespace = [
'whitespace-pre-wrap',
];

const wordBreak = ['break-normal', 'break-words', 'break-all', 'truncate'];
const wordBreak = ['break-normal', 'break-words', 'break-all'];

export default {
fontSmoothing,
Expand All @@ -49,6 +51,7 @@ export default {
textAlign,
textDecoration,
textTransform,
textOverflow,
verticalAlign,
whitespace,
wordBreak,
Expand Down

0 comments on commit d8fd228

Please sign in to comment.