mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 06:50:00 +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) {
|
@media screen and (max-width: 100ch) {
|
||||||
#root {
|
#root {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 100%;
|
||||||
grid-template-rows: auto auto;
|
grid-template-rows: auto auto;
|
||||||
|
|
||||||
.sidebar {
|
.sidebar {
|
||||||
|
@ -479,8 +479,13 @@ section.with-sidebar > div {
|
||||||
}
|
}
|
||||||
|
|
||||||
.user-profile .overview {
|
.user-profile .overview {
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 100%;
|
||||||
grid-template-rows: auto auto;
|
grid-template-rows: auto auto;
|
||||||
|
|
||||||
|
.files {
|
||||||
|
margin: 0;
|
||||||
|
margin-top: 1rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
main section {
|
main section {
|
||||||
|
|
Loading…
Reference in a new issue