diff options
author | Daniel Schadt <kingdread@gmx.de> | 2023-12-13 19:47:22 +0100 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2023-12-13 19:47:22 +0100 |
commit | 574d7d891de25ffc0b932b1d4bc5ea0367914e40 (patch) | |
tree | 16ed77419562e54fa7ba5a0ef32c9d20071ef5b4 /static/sass | |
parent | 29611af4768a3b4f06354eb29f1e99dc34cc750d (diff) | |
download | moeka-574d7d891de25ffc0b932b1d4bc5ea0367914e40.tar.gz moeka-574d7d891de25ffc0b932b1d4bc5ea0367914e40.tar.bz2 moeka-574d7d891de25ffc0b932b1d4bc5ea0367914e40.zip |
add asterism as svg
I didn't realize that it wasn't included in IBM Plex and my system just
showed a fallback glyph from a different font.
Diffstat (limited to 'static/sass')
-rw-r--r-- | static/sass/main.scss | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/static/sass/main.scss b/static/sass/main.scss index 22295ec..ff3f04a 100644 --- a/static/sass/main.scss +++ b/static/sass/main.scss @@ -142,9 +142,12 @@ p.asterism { text-align: center; margin-top: 30px; margin-bottom: 30px; - &::before { - content: "⁂"; - } + + height: 20px; + background-image: url("../images/asterism.svg"); + background-size: 20px; + background-repeat: no-repeat; + background-position: center; } /* Undo the usual header spacing so we can nicely and evenly space the asterism */ div.section:has(p.asterism) + div h2 { |