1
0
Fork 0
forked from gitea/nas

Merge commit '5e1752ce3f' into kb_migration

This commit is contained in:
KMY 2023-07-07 07:21:46 +09:00
commit fc87e18044
8 changed files with 34 additions and 8 deletions

View file

@ -1137,6 +1137,8 @@ body > [data-popper-placement] {
}
&--in-thread {
$thread-margin: 46px + 10px;
border-bottom: 0;
.status__content,
@ -1148,8 +1150,12 @@ body > [data-popper-placement] {
.attachment-list,
.picture-in-picture-placeholder,
.status-card {
margin-inline-start: 46px + 10px;
width: calc(100% - (46px + 10px));
margin-inline-start: $thread-margin;
width: calc(100% - ($thread-margin));
}
.status__content__read-more-button {
margin-inline-start: $thread-margin;
}
}