fix: warning notification

This commit is contained in:
kolaente 2022-01-29 17:28:06 +01:00
parent 6b679d2d6f
commit 2798c57c1e
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 10 additions and 2 deletions

View File

@ -4,9 +4,9 @@
<div class="w-full md:w-1/4">
{{ partial "menu" . }}
</div>
<div class="w-full md:w-3/4 p-4 pt-6 md:pt-2">
<article class="w-full md:w-3/4 p-4 pt-6 md:pt-2">
{{ partial "prose.html" .Content }}
</div>
</article>
</div>
{{ partial "footer.html" . }}

View File

@ -17,3 +17,11 @@ body {
.prose h6 {
@apply font-title font-semibold;
}
.notification {
@apply p-4 rounded;
}
.notification.is-warning {
@apply bg-yellow-300;
}