Skip to content

Commit

Permalink
Fix Carriage Return after a custom emoji in the bio's Extra fields, F…
Browse files Browse the repository at this point in the history
…ixes #105
  • Loading branch information
ronilaukkarinen committed Feb 9, 2024
1 parent 6d83de2 commit 5b5cbbf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### 2.0.0rc10: 2024-02-01
### 2.0.0rc12: 2024-02-09

* Prepare for 4.3.0 release with SVG icons
* Add icon support for new SVG icons, replace icons for Home, Notifications, Explore, Live feeds, Private mentions, bookmarks, Favorites, Preferences and Lists
Expand Down Expand Up @@ -37,6 +37,7 @@
* Offset fixes for especially multiple column view for 4.3.0 (2024-01-27)
* Styles for Follow recommendations, "Who to follow" since Mastodon v4.3.0-alpha.1 (2024-02-01)
* Add Bluesky icon according to the new brand #106 (thanks @dhelonious!)
* Fix Carriage Return after a custom emoji in the bio's Extra fields, Fixes #105 (thanks @dhelonious!)

### 1.8.3: 2023-11-12

Expand Down
4 changes: 2 additions & 2 deletions layout-multiple-columns.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Mastodon Bird UI by @rolle@mementomori.social
2.0.0rc11 */
2.0.0rc12 */

/* CSS variables */
:root {
Expand Down Expand Up @@ -2326,7 +2326,7 @@ body.embed .detailed-status__meta .detailed-status__link .icon-retweet,
}

/* Truncate too long links in the profile, like Nostr */
.layout-multiple-columns .account__header__bio .account__header__fields a {
.layout-multiple-columns .account__header__bio .account__header__fields span > a:only-of-type {
display: block;
max-width: 220px;
overflow: hidden;
Expand Down
4 changes: 2 additions & 2 deletions layout-single-column.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Mastodon Bird UI by @rolle@mementomori.social
2.0.0rc11 */
2.0.0rc12 */

/* CSS variables */
:root {
Expand Down Expand Up @@ -2395,7 +2395,7 @@ body.embed .detailed-status__meta .detailed-status__link .fa-retweet,
}

/* Truncate too long links in the profile, like Nostr */
.layout-single-column .account__header__bio .account__header__fields a {
.layout-single-column .account__header__bio .account__header__fields span > a:only-of-type {
display: block;
max-width: 220px;
overflow: hidden;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mastodon-bird-ui",
"version": "2.0.0rc11",
"version": "2.0.0rc12",
"description": "",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 5b5cbbf

Please sign in to comment.