Browse Source

Fix list editor modal on narrow devices (#5904)

pull/4/head
Lynx Kotoura 6 years ago
committed by Eugen Rochko
parent
commit
a20509b41e
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      app/javascript/styles/mastodon/components.scss

+ 5
- 1
app/javascript/styles/mastodon/components.scss View File

@ -4489,9 +4489,13 @@ noscript {
flex-direction: column;
border-radius: 8px;
box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
width: 40vh;
width: 380px;
overflow: hidden;
@media screen and (max-width: 420px) {
width: 90%;
}
h4 {
padding: 15px 0;
background: lighten($ui-base-color, 13%);

Loading…
Cancel
Save