Skip to content

Commit

Permalink
Merge pull request #959 from webcompat/comment-width
Browse files Browse the repository at this point in the history
Fixes #940 - fixed with comment on small screen
  • Loading branch information
Mike Taylor committed Mar 23, 2016
2 parents a1e65fd + e40bc51 commit 2743d4c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions webcompat/static/css/development/components/comment.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@
.wc-Comment-body {
position: relative;
flex: 1;
margin-left:.8em;
max-width: calc(100% - 59px);
max-width: 100%;
}

@media all and (max-width: 61.87em) {
@media all and (min-width: 61.88em) {

.wc-Comment-body {
margin-left:0;
margin-left:.8em;
max-width: calc(100% - 59px);
}
}

Expand Down Expand Up @@ -125,7 +125,7 @@
.wc-Comment-header-spacing {
padding: 0 6px;
}

/* Name of owner */
.wc-Comment-owner {
font-weight: bold;
Expand Down

0 comments on commit 2743d4c

Please sign in to comment.