forked from AkkomaGang/akkoma-fe
fix alignment issues
This commit is contained in:
parent
8ade11783a
commit
06042569f1
4 changed files with 11 additions and 5 deletions
|
@ -3,7 +3,7 @@
|
||||||
.MentionLink {
|
.MentionLink {
|
||||||
position: relative;
|
position: relative;
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
display: inline-block;
|
display: inline-flex;
|
||||||
color: var(--link);
|
color: var(--link);
|
||||||
|
|
||||||
& .new,
|
& .new,
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
@import '../../_variables.scss';
|
@import '../../_variables.scss';
|
||||||
|
|
||||||
.popover-trigger-button {
|
.popover-trigger-button {
|
||||||
display: block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.popover {
|
.popover {
|
||||||
|
|
|
@ -165,16 +165,23 @@ $status-margin: 0.75em;
|
||||||
align-content: baseline;
|
align-content: baseline;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 160%;
|
line-height: 160%;
|
||||||
|
margin-top: 0.2em;
|
||||||
|
line-height: 130%;
|
||||||
|
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
}
|
}
|
||||||
|
|
||||||
& .reply-to-popover,
|
& .reply-to-popover,
|
||||||
& .reply-to-no-popover {
|
& .reply-to-no-popover,
|
||||||
|
& .mentions {
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
margin-right: 0.4em;
|
margin-right: 0.4em;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
}
|
}
|
||||||
|
.reply-glued-label {
|
||||||
|
margin-right: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
.reply-to-popover {
|
.reply-to-popover {
|
||||||
.reply-to:hover::before {
|
.reply-to:hover::before {
|
||||||
|
@ -209,7 +216,6 @@ $status-margin: 0.75em;
|
||||||
& .reply-to {
|
& .reply-to {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
position: relative;
|
position: relative;
|
||||||
padding-right: 0.25em;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
& .mentions-text,
|
& .mentions-text,
|
||||||
|
|
|
@ -227,7 +227,7 @@
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
v-if="isReply"
|
v-if="isReply"
|
||||||
class="glued-label"
|
class="glued-label reply-glued-label"
|
||||||
>
|
>
|
||||||
<StatusPopover
|
<StatusPopover
|
||||||
v-if="!isPreview"
|
v-if="!isPreview"
|
||||||
|
|
Loading…
Reference in a new issue