🐛 Term view is missing a margin before content list

This commit is contained in:
Nuno Coração 2022-12-21 19:49:19 +00:00
parent 9059b558af
commit 6787cded15
41 changed files with 5 additions and 10 deletions

View file

@ -1526,10 +1526,6 @@ select {
width: 100%;
}
.w-36 {
width: 9rem;
}
.w-24 {
width: 6rem;
}
@ -1542,6 +1538,10 @@ select {
width: 1.5rem;
}
.w-36 {
width: 9rem;
}
.min-w-0 {
min-width: 0px;
}
@ -1749,11 +1749,6 @@ select {
border-color: rgba(var(--color-neutral-300), var(--tw-border-opacity));
}
.border-neutral-400 {
--tw-border-opacity: 1;
border-color: rgba(var(--color-neutral-400), var(--tw-border-opacity));
}
.border-neutral-200 {
--tw-border-opacity: 1;
border-color: rgba(var(--color-neutral-200), var(--tw-border-opacity));

View file

@ -23,7 +23,7 @@
</div>
</header>
{{ if .Content }}
<section class="flex flex-col max-w-full mt-0 prose dark:prose-invert lg:flex-row">
<section class="flex flex-col max-w-full mt-0 mb-5 prose dark:prose-invert lg:flex-row">
<div class="min-w-0 min-h-0 max-w-prose">
{{ .Content | emojify }}
</div>