-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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(redesign): misc whitespace and color changes #8531
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
two small things.
@@ -830,7 +830,7 @@ | |||
display: flex; | |||
flex-wrap: wrap; | |||
justify-content: center; | |||
padding: var(--section-indent) calc(var(--section-indent) / 2) calc(var(--section-indent) * 2); | |||
padding-top: var(--section-indent) calc(var(--section-indent) / 2) calc(var(--section-indent) * 2); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is 3 values, but padding-top just takes one? I guess you just want the section indent and that's it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
@@ -562,14 +562,15 @@ | |||
.lh-gauge__label { | |||
font-size: var(--score-title-font-size); | |||
line-height: var(--score-title-line-height); | |||
margin: calc(0.5 * var(--score-title-line-height)); | |||
margin-bottom: calc(0.5 * var(--score-title-line-height)); | |||
text-align: center; | |||
color: black; | |||
} | |||
|
|||
.lh-category .lh-gauge__label { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
side note: last year, I probably should have done this more bem-y as .lh-gauge__label--big
instead of relying on descendent selector, etc.
can you add a todo for that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, forgot to push. I made a TODO(#8185) comment and will follow up as clean up.
@@ -562,14 +562,15 @@ | |||
.lh-gauge__label { | |||
font-size: var(--score-title-font-size); | |||
line-height: var(--score-title-line-height); | |||
margin: calc(0.5 * var(--score-title-line-height)); | |||
margin-bottom: calc(0.5 * var(--score-title-line-height)); | |||
text-align: center; | |||
color: black; | |||
} | |||
|
|||
.lh-category .lh-gauge__label { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#8185