feat(post): add loading state string

This commit is contained in:
Tom (plebeius.eth)
2024-07-21 12:17:40 +02:00
parent c27cd8aa26
commit 954b158704
3 changed files with 38 additions and 2 deletions
+17
View File
@@ -514,6 +514,15 @@
vertical-align: top;
}
.stateString {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: calc(100vw - 28px);
width: 100vw;
}
@media (max-width: 640px) {
.replyQuotePreview {
margin-right: 10px;
@@ -535,6 +544,10 @@
.authorAvatar {
vertical-align: middle;
}
.stateString {
padding-left: 5px;
}
}
@media (min-width: 640px) {
@@ -555,4 +568,8 @@
.replyMobile {
display: none;
}
.stateString {
padding-top: 10px;
}
}