fix: fix rendering of link preview when no images are found

This commit is contained in:
Audric Ackermann 2022-10-04 15:39:33 +11:00
parent 3788f5a4d5
commit 74f2167a2b
1 changed files with 5 additions and 2 deletions

View File

@ -147,7 +147,6 @@
.module-message__link-preview {
cursor: pointer;
display: flex;
align-items: center;
background: white;
@ -158,13 +157,17 @@
.module-image {
margin: -1px;
}
&__text {
padding-block: var(--margins-sm);
}
}
.module-message__link-preview__content {
padding: 0 0 var(--margins-xs) 0;
display: flex;
flex-direction: row;
align-items: flex-start;
align-items: center;
flex-grow: 1;
margin-left: var(--margins-sm);
}