Columns: allow transparent columns to extend to the full screen width on mobile

This commit is contained in:
Alex Gleason 2021-09-13 13:46:27 -05:00
parent b7aba768f4
commit 01e16be157
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 15 additions and 0 deletions

View File

@ -795,3 +795,18 @@
}
}
}
// Let transparent columns extend the full width of the screen
@media screen and (max-width: 450px) {
.columns-area__panels__main--transparent {
padding: 0;
}
.columns-area--transparent {
.status__wrapper,
.detailed-status__wrapper,
.timeline-compose-block {
border-radius: 0;
}
}
}