diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-02-12 01:08:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-12 01:08:23 +0100 |
commit | e848d281d55a3c753f6dc8d9f32a3d7eb9b9a2ff (patch) | |
tree | b7bad827d676f1f203fe9d0c471d1f311179b0e9 /app | |
parent | 4a0b6e3e5ea33fa1167f5820b442725bab16322f (diff) |
Fix layout of the report page on smaller screens in admin UI (#17523)
Fix #17491
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/styles/mastodon/admin.scss | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/javascript/styles/mastodon/admin.scss b/app/javascript/styles/mastodon/admin.scss index 21669dded..546de1640 100644 --- a/app/javascript/styles/mastodon/admin.scss +++ b/app/javascript/styles/mastodon/admin.scss @@ -1187,6 +1187,10 @@ a.sparkline { } } } + + @media screen and (max-width: 930px) { + grid-template-columns: minmax(0, 1fr); + } } .account-card { |