-
Notifications
You must be signed in to change notification settings - Fork 193
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
Width of Comment on Small screen #940
Labels
Comments
is it has something to do with the responsiveness of the website? |
We need to add a media querie to handle this width only and only if Something like: /* Body */
.wc-Comment-body {
position: relative;
flex: 1;
margin-left:.8em;
}
@media all and (min-width: 61.88em) {
.wc-Comment-body {
max-width: calc(100% - 59px);
}
} |
magsout
added a commit
that referenced
this issue
Mar 11, 2016
magsout
added a commit
that referenced
this issue
Mar 11, 2016
miketaylr
pushed a commit
that referenced
this issue
Mar 23, 2016
Fixes #940 - fixed with comment on small screen
daliacoss
pushed a commit
to daliacoss/webcompat.com
that referenced
this issue
Mar 29, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Comment doesn't take advantage of full with on small screen..
The text was updated successfully, but these errors were encountered: