Skip to content

Commit

Permalink
✨Support for mark, underline, italic and abbr tags (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkusJohansen authored Jan 13, 2024
1 parent 921033e commit 031b9d8
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 3 deletions.
21 changes: 19 additions & 2 deletions build/chimera.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/chimera.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions src/elements/_formatted-text.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,20 @@ samp {
padding: 4px 8px;
line-height: 1.5;
}

mark {
background-color: $Chimera-fill;
padding: 0.2em;
}

underline {
text-decoration: underline;
}

italic {
font-style: italic;
}

abbr {
text-decoration: underline dotted;
}

0 comments on commit 031b9d8

Please sign in to comment.