fix: repost ui limitation

This commit is contained in:
trisua 2025-05-17 22:12:29 -04:00
parent 657c204a66
commit 4837da0cba
3 changed files with 72 additions and 49 deletions

View file

@ -162,8 +162,12 @@ p {
margin-bottom: 0;
}
.post_right {
max-width: calc(84% + 4px);
.post_right:not(.repost) {
max-width: calc(100% - 52px);
}
.rhs {
width: 100% !important;
}
.name {
@ -183,8 +187,8 @@ p {
max-width: unset;
}
.post_right {
max-width: calc(91% + 4px);
.rhs {
width: calc(100% - 23rem) !important;
}
}
@ -1488,3 +1492,14 @@ align.center {
align.right {
text-align: right;
}
/* lhs, rhs */
.rhs {
width: calc(100% - 23rem) !important;
}
@media screen and (max-width: 900px) {
.rhs {
width: 100% !important;
}
}