Handle overflow bars on mobile

This commit is contained in:
arne 2025-11-26 08:04:03 +01:00
commit 5eb0b2d736

View file

@ -247,6 +247,7 @@
section.posts .post .metadata {
display: grid;
grid-template-columns: 1fr auto;
grid-gap: 12px;
}
section.posts .post .metadata .post-info {
@ -258,6 +259,19 @@
color: #777;
}
section.posts .post .users {
overflow: hidden;
text-overflow: ellipsis;
}
section.posts .post .content a .hidden {
display: none;
}
section.posts .post .content a .ellipsis:after {
conten: "…";
}
section.posts .post .content p:last-child {
margin-bottom: 0
}