feat(shortcodes): add inline option to image shortcodes (#315)

This commit is contained in:
Óscar
2024-05-18 14:52:39 +02:00
committed by GitHub
parent 6a4f4244e0
commit 27525fc13f
10 changed files with 101 additions and 39 deletions

View File

@@ -37,11 +37,21 @@ figure h4::before {
.img-dark {
display: none;
&.inline{
display: none;
}
}
.img-light.inline {
display: inline;
}
[data-theme="dark"] {
.img-dark {
display: block;
&.inline {
display: inline;
}
}
.img-light {