Skip to content

Commit

Permalink
Fix: スマホで見た時、ヘッダ右側が隠れる問題 (#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
kmycode authored Nov 10, 2023
1 parent 4cedcf6 commit c6bcbb8
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion app/javascript/styles/mastodon/components.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2290,7 +2290,7 @@ $ui-header-height: 55px;
display: none;
}

@media screen and (width >= 320px) {
@media screen and (width >= 370px) {
.logo--wordmark {
display: block;
}
Expand All @@ -2299,6 +2299,16 @@ $ui-header-height: 55px;
display: none;
}
}

@media screen and (width < 330px) {
.logo--wordmark {
display: none;
}

.logo--icon {
display: none;
}
}
}

&__links {
Expand Down

0 comments on commit c6bcbb8

Please sign in to comment.