[go: nahoru, domu]

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

report: use css grid for metrics #9273

Merged
merged 5 commits into from
Jun 28, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
align
  • Loading branch information
connorjclark committed Jun 28, 2019
commit 04dc7796d4cda85679530ca7cd7414fd4b1f488f
2 changes: 1 addition & 1 deletion lighthouse-core/report/html/report-styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@

.lh-metric__description {
display: none;
grid-column-start: 1;
grid-column-start: 2;
grid-column-end: 3;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looking at https://yuinchien.com/sandbox/lighthouse/
image

it seems this is currently misaligned...
image

perhaps:

  grid-column-start: 2;
  grid-column-end: 4;

? i dont really know grid though... can you doublecheck?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ya that did the trick

color: var(--report-text-color-secondary);
}
Expand Down