feat: add date visibility options to post list (#330)

Co-authored-by: welpo <welpo@users.noreply.github.com>
This commit is contained in:
sam
2024-07-11 23:19:14 +02:00
committed by GitHub
parent 57ff693eca
commit a76d6888b6
10 changed files with 130 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) {