We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug; what happened?
When you set the <fast-slider> width to 0% it is not being respected since it already has a min-width set to:
<fast-slider>
:host(.horizontal) { min-width: calc(var(--design-unit) * 60px); }
What are the steps to reproduce the issue?
Use the following code:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <title>Repro</title> </head> <body> <fast-design-system-provider use-defaults> <fast-slider min="0" max="100" value="1" style="width:0%"></fast-slider> </fast-design-system-provider> <script type="module" src="https://unpkg.com/@microsoft/fast-components"></script> </body> </html>
What behavior did you expect?
The width must be respected when set to 0%,
The text was updated successfully, but these errors were encountered:
This issue was already fixed for both fluent and fast, further discussion will continue on #3644
Sorry, something went wrong.
No branches or pull requests
Describe the bug; what happened?
When you set the
<fast-slider>
width to 0% it is not being respected since it already has a min-width set to:What are the steps to reproduce the issue?
Use the following code:
What behavior did you expect?
The width must be respected when set to 0%,
The text was updated successfully, but these errors were encountered: