-
Notifications
You must be signed in to change notification settings - Fork 15
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
feat(meter): add meter component #712
base: main
Are you sure you want to change the base?
Conversation
Run & review this pull request in StackBlitz Codeflow. |
meter.style.setProperty('--z-index', `${meters.length - index}`); | ||
meter.style.setProperty('--inset', `${inset}%`); |
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.
Should we use prefixed and private named CSS vars here?
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.
I think so but the linter was complaining about it
PR Checklist
Please check if your PR fulfills the following requirements:
Describe the new behavior?
Added a new Forge Meter component to parallel the native HTML
<meter>
element.