Bullet List with dots (#2156)

Signed-off-by: Alexander Platov <sas_lord@mail.ru>
This commit is contained in:
Alexander Platov 2022-06-28 09:54:44 +03:00 committed by GitHub
parent ffe2137d4a
commit cbb2e3e9c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -59,7 +59,7 @@
{:else if node.nodeName === 'OL'}
<ol><svelte:self nodes={node.childNodes} /></ol>
{:else if node.nodeName === 'LI'}
<li class={'flex flex-grow gap-1 checkbox_style'}><svelte:self nodes={node.childNodes} /></li>
<li><svelte:self nodes={node.childNodes} /></li>
{:else if node.nodeName === 'DIV'}
<div><svelte:self nodes={node.childNodes} /></div>
{:else if node.nodeName === 'A'}

View File

@ -92,6 +92,11 @@ table {
border-spacing: 0;
}
li {
color: var(--dark-color);
p { color: var(--content-color); }
}
/* Common */
* {
--modal-padding: 1rem;