frontend add post toolbar; so far displaying postdate

This commit is contained in:
2022-08-02 13:24:07 +02:00
parent b369c0862b
commit 92469fc558
3 changed files with 18 additions and 9 deletions

View File

@ -9,11 +9,12 @@ body {
}
.post {
@apply bg-base-200 shadow-md rounded-md;
@apply flex flex-col sm:flex-row mb-4;
@apply bg-base-200 shadow-md rounded-md mb-4;
@apply grid grid-cols-[1fr] grid-rows-[min-content_1fr_auto];
@apply sm:grid-cols-[13em_auto] sm:grid-rows-[1fr_auto];
}
.post :where(article, .userinfo) {
@apply p-4 pt-4;
@apply p-4 pb-0 sm:pb-4;
}
.post .bbc-block {