mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-01-23 00:56:23 +01:00
Fix vertical alignment issues, again
This commit is contained in:
parent
efb38bc5d1
commit
66e32fa03f
2 changed files with 4 additions and 3 deletions
|
@ -37,7 +37,6 @@
|
|||
/* STATUS PRE META */
|
||||
|
||||
.status-pre-meta {
|
||||
line-height: 1.4;
|
||||
padding: 8px 16px 0;
|
||||
opacity: 0.75;
|
||||
font-size: smaller;
|
||||
|
@ -48,7 +47,9 @@
|
|||
margin-bottom: -8px;
|
||||
}
|
||||
.status-pre-meta .name-text {
|
||||
display: inline;
|
||||
display: inline-flex;
|
||||
gap: 4px;
|
||||
align-items: center;
|
||||
}
|
||||
.status-pre-meta > * {
|
||||
vertical-align: middle;
|
||||
|
|
|
@ -208,7 +208,7 @@ function Status({
|
|||
<div class="status-pre-meta">
|
||||
<Icon icon="rocket" size="l" />{' '}
|
||||
<NameText account={status.account} instance={instance} showAvatar />{' '}
|
||||
boosted
|
||||
<span>boosted</span>
|
||||
</div>
|
||||
<Status
|
||||
status={statusID ? null : reblog}
|
||||
|
|
Loading…
Reference in a new issue