Merge "Improve layout of comment list in mobile"

This commit is contained in:
Wyatt Allen
2018-02-27 23:52:40 +00:00
committed by Gerrit Code Review

View File

@@ -42,7 +42,7 @@ limitations under the License.
}
.container {
display: flex;
margin: 5px 0;
margin: .5em 0;
}
.lineNum {
margin-right: .5em;
@@ -53,6 +53,16 @@ limitations under the License.
flex: 1;
--gr-formatted-text-prose-max-width: 80ch;
}
@media screen and (max-width: 50em) {
.container {
flex-direction: column;
margin: 0 0 .5em .5em;
}
.lineNum {
min-width: initial;
text-align: left;
}
}
</style>
<template is="dom-repeat" items="[[_computeFilesFromComments(comments)]]" as="file">
<div class="file">[[computeDisplayPath(file)]]:</div>