feat: add date visibility options to post list

Co-authored-by: sam <12381166+sam9032@users.noreply.github.com>
Co-authored-by: welpo <welpo@users.noreply.github.com>
This commit is contained in:
welpo 2024-07-09 23:18:58 +02:00
parent 57ff693eca
commit 313e573a3a
No known key found for this signature in database
GPG key ID: A2F978CF4EC1F5A6
10 changed files with 111 additions and 30 deletions

View file

@ -276,6 +276,10 @@ video {
margin-bottom: 2rem;
}
.mobile-only {
display: none;
}
@media only screen and (max-width: 1000px) {
.content {
max-width: var(--normal-layout-width);
@ -292,6 +296,10 @@ video {
max-width: none;
overflow-x: auto;
}
.mobile-only {
display: block;
}
}
@media only screen and (max-width: 600px) {

View file

@ -10,6 +10,7 @@
padding: 2.5rem 0;
.bloglist-meta {
margin-right: 0.7rem;
padding: 0;
width: 13.5rem;
color: var(--meta-color);