Center the date vertically when tags wrap

This commit is contained in:
daudix
2024-08-29 06:41:25 +03:00
parent d4d9561d87
commit 74eaa00a9b

View File

@ -321,10 +321,15 @@
display: flex; display: flex;
flex-wrap: nowrap; flex-wrap: nowrap;
justify-content: space-between; justify-content: space-between;
align-items: center;
gap: 0.25rem; gap: 0.25rem;
margin-block-start: 1rem; margin-block-start: 1rem;
border-block-start: max(1px, 0.0625rem) solid var(--fg-muted-2); border-block-start: max(1px, 0.0625rem) solid var(--fg-muted-2);
padding-block-start: 0.5rem; padding-block-start: 0.5rem;
small {
line-height: 1.25;
}
} }
} }
} }