mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-10-31 22:40:01 +00:00
fix mobile overflow
This commit is contained in:
parent
5501dc438d
commit
60a8dcf98c
1 changed files with 7 additions and 2 deletions
|
@ -454,7 +454,7 @@ section.with-sidebar > div {
|
|||
@media screen and (max-width: 100ch) {
|
||||
#root {
|
||||
padding: 1rem;
|
||||
grid-template-columns: 1fr;
|
||||
grid-template-columns: 100%;
|
||||
grid-template-rows: auto auto;
|
||||
|
||||
.sidebar {
|
||||
|
@ -479,8 +479,13 @@ section.with-sidebar > div {
|
|||
}
|
||||
|
||||
.user-profile .overview {
|
||||
grid-template-columns: 1fr;
|
||||
grid-template-columns: 100%;
|
||||
grid-template-rows: auto auto;
|
||||
|
||||
.files {
|
||||
margin: 0;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
main section {
|
||||
|
|
Loading…
Reference in a new issue