1
0
mirror of https://github.com/Luzifer/wiki.git synced 2024-09-16 14:18:29 +00:00

Style blockquotes (better)

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2024-01-30 16:46:57 +01:00
parent 1eaec48b5a
commit 919d2ba1ab
Signed by: luzifer
SSH Key Fingerprint: SHA256:/xtE5lCgiRDQr8SLxHMS92ZBlACmATUmF1crK16Ks4E

View File

@ -7,6 +7,7 @@
import showdown from 'showdown'
const classMap = {
blockquote: 'blockquote',
table: 'table',
}
@ -58,3 +59,12 @@ export default {
},
}
</script>
<style>
.blockquote {
margin-bottom: 1rem;
font-size: 1rem;
border-left: 3px solid rgb(var(--bs-secondary-bg-rgb));
padding-left: 0.5rem;
}
</style>