Skip to content

Commit

Permalink
Fix alignment for textual label links
Browse files Browse the repository at this point in the history
  • Loading branch information
ronilaukkarinen committed Dec 6, 2023
1 parent 891d6a5 commit 2b6e09a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
* Truncate too long links in the profile, like Nostr
* Remove font-size definitions from icon fonts that are no longer in use
* Add proportions for the new copy icon
* Fix alignment for textual label links

### 1.8.0: 2023-10-29

Expand Down
5 changes: 5 additions & 0 deletions layout-multiple-columns.css
Original file line number Diff line number Diff line change
Expand Up @@ -1562,6 +1562,11 @@ body.embed .detailed-status__favorites {
font-weight: var(--font-weight-bold);
}

/* Fix alignment */
.layout-multiple-columns .detailed-status__link {
top: 1px;
}

/* Textual labels for detailed metrics */
body.embed .detailed-status__link > .icon-reply + span::after,
.layout-multiple-columns .detailed-status__link > .icon-reply + span::after {
Expand Down
5 changes: 5 additions & 0 deletions layout-single-column.css
Original file line number Diff line number Diff line change
Expand Up @@ -1590,6 +1590,11 @@ body.embed > .activity-stream {
overflow: hidden;
}

/* Fix alignment */
.layout-single-column .detailed-status__link {
top: 1px;
}

/* Textual labels for detailed metrics */
body.embed .detailed-status__link > .fa-reply + span::after,
.layout-single-column .detailed-status__link > .icon-reply + span::after {
Expand Down

0 comments on commit 2b6e09a

Please sign in to comment.