feat: separated content meta (#929)

to allow for CSS styling
This commit is contained in:
Matt Vogel
2024-03-10 12:57:10 -04:00
committed by GitHub
parent b4236e5142
commit 0f5a9d7b66
2 changed files with 28 additions and 8 deletions

View File

@ -0,0 +1,14 @@
.content-meta {
margin-top: 0;
color: var(--gray);
&[show-comma="true"] {
> span:not(:last-child) {
margin-right: 8px;
&::after {
content: ",";
}
}
}
}