Fix replies to deleted messages

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-07-02 14:22:46 +02:00
parent 6645036780
commit 0fe10e4502
No known key found for this signature in database
GPG key ID: 9760693FDD98A790
2 changed files with 5 additions and 2 deletions

View file

@ -20,6 +20,8 @@ limitations under the License.
padding-left: 20px; padding-left: 20px;
position: relative; position: relative;
line-height: 2.2rem;
&::before { &::before {
height: 14px; height: 14px;
width: 14px; width: 14px;
@ -30,7 +32,7 @@ limitations under the License.
mask-size: contain; mask-size: contain;
content: ''; content: '';
position: absolute; position: absolute;
top: 1px; top: 4px;
left: 0; left: 0;
} }
} }

View file

@ -25,7 +25,8 @@ limitations under the License.
} }
.mx_ReplyTile > a { .mx_ReplyTile > a {
display: block; display: flex;
flex-direction: column;
text-decoration: none; text-decoration: none;
color: $primary-fg-color; color: $primary-fg-color;
} }