diff options
author | Deniz Akşimşek <deniz@denizaksimsek.com> | 2022-11-14 18:09:23 +0300 |
---|---|---|
committer | Deniz Akşimşek <deniz@denizaksimsek.com> | 2022-11-14 18:09:23 +0300 |
commit | 7769c5b6fa8d0afa61aebf7f9a7eca1a722d9004 (patch) | |
tree | 49c7a402dcc8f9870b1ad3f41a52835a6867f032 | |
parent | 0dec578dd55cd3e28c0b0a5aed5cfff77a22bbf2 (diff) | |
download | missing-7769c5b6fa8d0afa61aebf7f9a7eca1a722d9004.tar.gz missing-7769c5b6fa8d0afa61aebf7f9a7eca1a722d9004.zip |
unitalic code
-rw-r--r-- | releases/1.0.2.md | 11 | ||||
-rw-r--r-- | src/main.css | 1 |
2 files changed, 11 insertions, 1 deletions
diff --git a/releases/1.0.2.md b/releases/1.0.2.md index 3129e84..236faed 100644 --- a/releases/1.0.2.md +++ b/releases/1.0.2.md @@ -16,4 +16,13 @@ artifacts: ## Changelog - - Added the `.big` modifier.
\ No newline at end of file + - Added the `.big` utility. + + You can use this class to make anything bigger. If added to an `<aside>`, it + makes a [pull quote][]. + + - Code will now be un-italicized when it's in an italic container (`em`, + `dfn`, etc.). Add the `.italic` class or put the italic element _inside_ the + code element to undo this. + +[pull quote]: https://en.wikipedia.org/wiki/Pull_quote diff --git a/src/main.css b/src/main.css index dd87371..cf145b4 100644 --- a/src/main.css +++ b/src/main.css @@ -344,6 +344,7 @@ time { code, samp, kbd { font-family: var(--mono-font); + font-style: normal; } samp { |