-
-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
Change absolute units(px) to relative units(rem) #7571
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.
These changes can be merged!
I believe this might actually be a breaking change as the |
It's also breaking because |
I don't believe compatibility with Internet Explorer needs to be a problem as we can provide a fallback value. |
@@ -431,7 +431,7 @@ svg.leaflet-image-layer.leaflet-interactive path { | |||
border-top: none; | |||
line-height: 1.1; | |||
padding: 2px 5px 1px; | |||
font-size: 11px; | |||
font-size: 0.69rem; |
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.
@Chandu-4444 would you like to update all changes to also include the px
unit declarations as a fallback per #7571 (comment)?
i.e. to use both, but with the rem
declaration after:
font-size: 11px;
font-size: 0.69rem;
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.
Yeah sure!
I tried reopening but it doesn't allow me to, saying that the repo of the PR has been deleted — want to update @Chandu-4444, or submit a new PR if it's not easily possible? |
I'll submit a new PR then. |
Hey, I've changed the units mentioned here #7548 . I'm a beginner, please let me know if anything's wrong.