Skip to content

Commit

Permalink
Fix Create account button not clickable on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
ronilaukkarinen committed Jul 28, 2024
1 parent e9dcb38 commit c107b88
Show file tree
Hide file tree
Showing 4 changed files with 12 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.0.0rc43: 2024-07-28

* Fix Create account button not clickable on mobile

### 2.0.0rc42: 2024-07-11

* Support for grouped notifications [#30440](https://github.com/mastodon/mastodon/pull/30440)
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.0.0rc42 */
2.0.0rc43 */

/* CSS variables */
:root {
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 @[email protected]
2.0.0rc42 */
2.0.0rc43 */

/* CSS variables */
:root {
Expand Down Expand Up @@ -1840,6 +1840,11 @@ body.embed .detailed-status__meta .detailed-status__link .fa-retweet,
padding: 0;
}

/* Fix Create account button not clickable on mobile */
.ui__header:has(.button[href="/auth/sign_up"]) {
z-index: 4;
}

@media (min-width: 1175px) {
.layout-single-column .ui__header,
.layout-single-column .columns-area__panels__main > div.tabs-bar__wrapper,
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.0rc42",
"version": "2.0.0rc43",
"description": "",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit c107b88

Please sign in to comment.