Skip to content

Commit

Permalink
Fix a regression for 4.3.0-alpha.3-2024-04-06 caused by mastodon/mast…
Browse files Browse the repository at this point in the history
  • Loading branch information
ronilaukkarinen committed Apr 6, 2024
1 parent bd2e55d commit f15d0b1
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 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.0rc36: 2024-04-06
### 2.0.0rc37: 2024-04-06

* 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 @@ -62,6 +62,7 @@
* Fix post button running away if compose form message is too long
* Fix star icon misalignment for numbered items, Fixes #116
* Fix boost icon misalignment when clicked the detailed view boost icon on advanced web interface, Fixes #112
* Fix a regression for 4.3.0-alpha.3-2024-04-06 caused by https://github.com/mastodon/mastodon/commit/4f068d4fcc4d134fcbd56faa8f39c608dd343417

### 1.8.3: 2023-11-12

Expand Down
7 changes: 6 additions & 1 deletion 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.0rc36 */
2.0.0rc37 */

/* CSS variables */
:root {
Expand Down Expand Up @@ -444,6 +444,11 @@ body.layout-multiple-columns {
width: 50px;
}

/* Fixes a regression for 4.3.0-alpha.3-2024-04-06 caused by https://github.com/mastodon/mastodon/commit/4f068d4fcc4d134fcbd56faa8f39c608dd343417 */
.layout-multiple-columns .ui__header__logo {
flex-grow: unset;
}

.layout-multiple-columns .ui__header__logo img,
.layout-multiple-columns .ui__header__logo svg {
display: none;
Expand Down
7 changes: 6 additions & 1 deletion 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.0rc36 */
2.0.0rc37 */

/* CSS variables */
:root {
Expand Down Expand Up @@ -458,6 +458,11 @@ body.layout-single-column {
display: none;
}

/* Fixes a regression for 4.3.0-alpha.3-2024-04-06 caused by https://github.com/mastodon/mastodon/commit/4f068d4fcc4d134fcbd56faa8f39c608dd343417 */
.layout-single-column .ui__header__logo {
flex-grow: unset;
}

/* Things that should have the default font-size */
.layout-single-column .notification__message,
.layout-single-column .status__content,
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.0rc36",
"version": "2.0.0rc37",
"description": "",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit f15d0b1

Please sign in to comment.