-
Notifications
You must be signed in to change notification settings - Fork 1k
fix: centralize warning message in static error #20389
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
base: main
Are you sure you want to change the base?
Conversation
</div> | ||
</body> | ||
|
||
<head> |
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.
the prettier code style is that <head>
and <body>
both should be indented
|
||
p, | ||
li { | ||
color: rgb(161, 161, 170); |
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 should still be a hex color
p, | ||
li { | ||
color: rgb(161, 161, 170); | ||
line-height: 22.4px; |
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.
22.4px
is a specific enough value to deserve a rationale comment. why not a percent anymore? why not 22px
?
padding-top: 10px; | ||
margin-left: 30px; | ||
font-size: 14px; | ||
line-height: 25.6px; |
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.
another very odd line-height
choice
} | ||
|
||
.warning li { | ||
text-align: left; |
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.
where is the center align coming from? manually left aligning things that should just be left aligned feels like a bit of a bandaid
background: rgb(13, 19, 33); | ||
width: 100%; | ||
padding: 24px; | ||
text-align: left; |
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.
same here
Before:
After:
Fixes #20369