1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00

Don't use multiple columns in app scope settings if width isn't enough

This commit is contained in:
arbolitoloco1 2023-09-10 22:59:02 -03:00
parent 91040da871
commit c734a2b4d9

View file

@ -279,6 +279,12 @@ code {
}
}
.input.with_block_label.doorkeeper_application_scopes ul {
@media screen and (width <= 1000px) {
column-count: unset;
}
}
.input.with_block_label.user_role_permissions_as_keys ul {
columns: unset;
}