diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-10-28 02:20:12 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-10-28 02:20:12 +0100 |
commit | 03c0e01d1cd93ef647d832fbdb0f49bac9d8f2bc (patch) | |
tree | 91b03fba6845ff75bbfbc24917ea7a2b6449fef0 /src/style.css | |
parent | 3ea90b87fb8db5a369d2f592c480e6b66c139f29 (diff) |
Check ‘lang’ attr instead of class
Diffstat (limited to 'src/style.css')
-rw-r--r-- | src/style.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/style.css b/src/style.css index d60cec7..3ee4672 100644 --- a/src/style.css +++ b/src/style.css @@ -99,7 +99,7 @@ blockquote { p:first-child::before { content: '‘'; } p:last-child::after { content: '’'; } - &.de { + &:lang(de) { p:first-child::before { content: '„'; } p:last-child::after { content: '“'; } } |