Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Profile page is not usable on mobile #29340

Closed
nickvergessen opened this issue Oct 20, 2021 · 1 comment · Fixed by #29833
Closed

Profile page is not usable on mobile #29340

nickvergessen opened this issue Oct 20, 2021 · 1 comment · Fixed by #29833
Labels
2. developing Work in progress bug design Design, UI, UX, etc. feature: profile PRs or issues related to the Profile feature (e.g. Profile page, API, etc.) papercut Annoying recurring issue with possibly simple fix.

Comments

@nickvergessen
Copy link
Member

How to use GitHub

  • Please use the 👍 reaction to show that you are affected by the same issue.
  • Please don't comment if you have no relevant information to add. It's just extra noise for everyone subscribed to this issue.
  • Subscribe to receive notifications on status change and new comments.

Steps to reproduce

  1. Open the profile with a mobile phone

Expected behaviour

Looks at least okay

Actual behaviour

Bildschirmfoto am 2021-10-20 um 16 42 11

@nickvergessen nickvergessen added bug design Design, UI, UX, etc. 1. to develop Accepted and waiting to be taken care of papercut Annoying recurring issue with possibly simple fix. feature: profile PRs or issues related to the Profile feature (e.g. Profile page, API, etc.) labels Oct 20, 2021
@Pytal Pytal mentioned this issue Oct 20, 2021
20 tasks
@szaimen
Copy link
Contributor

szaimen commented Nov 22, 2021

I've made it work with the following CSS:

@media only screen and (max-width: 1000px) {
.profile__header {
height: 250px !important;
position: unset !important;
}
.profile__header__container {
grid-template-columns: unset !important;
}
.profile__header__container__displayname {
margin: 100px 20px 0px !important;
width: unset !important;
display: unset !important;
}
.profile__header__container__edit-button {
width: fit-content !important;
display: block !important;
margin: 30px auto !important;
}
.profile__content {
display: block !important;
}
.profile__blocks {
width: unset !important;
max-width: 600px !important;
margin: 0 auto !important;
padding: 20px 50px 50px 50px !important;
}
.profile__sidebar {
margin: unset !important;
position: unset !important;
}
}
        

@szaimen szaimen added 2. developing Work in progress and removed 1. to develop Accepted and waiting to be taken care of labels Nov 22, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
2. developing Work in progress bug design Design, UI, UX, etc. feature: profile PRs or issues related to the Profile feature (e.g. Profile page, API, etc.) papercut Annoying recurring issue with possibly simple fix.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants