-
-
Notifications
You must be signed in to change notification settings - Fork 82
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
Notifications may not fit the mobile screen #1645
Comments
Yes, this is known. Someone with more CSS skills than me need to look into that. |
Huh! Actually, I can do it. =) |
It's in here
change width can solve this problem. maybe use But it seems like calc() in LESS ( < 3.0) is different... |
I had a different approach to this where the position becomes "relative" to the top-right corner below the top bar, and 100% wide for screens that are smaller than the max-width. --- a/src/com/view/bar/bar-notifications.less
+++ b/src/com/view/bar/bar-notifications.less
margin: 0px !important;
& .-items {
- width: 480px;
+ width: 100%;
max-width: 480px !important;
right: 0px;
- top: 55px;
+ top: 64px;
background: @COL_W !important;
+ position: fixed;
& .-item {
padding: 0px !important; Here's a GIF of this while resizing the screen using Firefox devtools: |
I'm fine with either just as long as we get one in. |
Opened a new issues (#1684) for the |
I'm re-opening the issue (even though it's resolved) for later when future me gets a chance to look at the notes above. We have a long list of mobile screen fitting issues, and I want to understand some of the proposed fixes if they can be used to resolve some of the other related issues. |
changed tags so it is clear that this isn't as important anymore. |
That's what I'm talking about.
The text was updated successfully, but these errors were encountered: