Skip to content

Commit

Permalink
Fix back button background on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
ronilaukkarinen committed Dec 25, 2024
1 parent e11f3b1 commit 8aba286
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 2.1.2rc5: 2024-12-25

* Fix back button background on mobile

### 2.1.2rc4: 2024-12-24

* Fix double border on gifs
Expand Down
2 changes: 1 addition & 1 deletion layout-multiple-columns.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Mastodon Bird UI by @[email protected]
2.1.2rc4 */
2.1.2rc5 */

/* CSS variables */
:root {
Expand Down
14 changes: 13 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 @[email protected]
2.1.2rc4 */
2.1.2rc5 */

/* CSS variables */
:root {
Expand Down Expand Up @@ -4002,6 +4002,18 @@ body .compose-form .compose-form__uploads {
padding: 0;
}

/* Fix back button background on mobile */
.app-body:not(.layout-multiple-columns):has(.column-back-button) .tabs-bar__wrapper::after {
background-color: var(--color-bg-90);
content: "";
height: 50px;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: -1;
}

.layout-single-column .columns-area__panels__main {
width: calc(100% - var(--width-side-panel));
}
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.1.2rc4",
"version": "2.1.2rc5",
"description": "",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 8aba286

Please sign in to comment.