Align column link heart icon better

This commit is contained in:
Roni Laukkarinen 2023-04-08 13:11:01 +03:00
parent 1912069523
commit d45c3d97ec
2 changed files with 10 additions and 2 deletions

View File

@ -1,7 +1,8 @@
### 1.4.5rc2: 2024-04-08
### 1.4.5rc3: 2024-04-08
* Move follow notification closer in line to the follow button
* Fix follow notification general alignment issues
* Align column link heart icon better
### 1.4.4: 2024-04-08

View File

@ -1,5 +1,5 @@
/* Mastodon Bird UI by @rolle@mementomori.social
1.4.5rc2 */
1.4.5rc3 */
/* CSS variables */
:root {
@ -3203,6 +3203,13 @@ body.embed .entry .detailed-status {
content: var(--icon-heart-column-link);
}
@media (min-width: 889px) {
.layout-single-column .column-link .fa-star::before {
position: relative;
top: 2px;
}
}
.layout-single-column .column-link.active .fa-star::before {
content: var(--icon-heart-column-link-active);
}