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
When the checkbox is wrapped with a dialog, it should take its position relative to the height of the dialog, not the page.
https://stackblitz.com/edit/vue2-vite-starter-ncdgf1?file=index.html,src%2FApp.vue
3.0.0-beta.14
No response
Medium (should be fixed soon)
The text was updated successfully, but these errors were encountered:
Imho, we should add
position: absolute;
on input instead of .check-mark
input[type="checkbox"] { appearance: none; outline: none; margin: 0; box-sizing: border-box; border: 1px solid var(--bl-color-neutral-lighter); border-radius: var(--bl-border-radius-xs); width: var(--bl-size-m); height: var(--bl-size-m); min-width: var(--bl-size-m); min-height: var(--bl-size-m); max-width: var(--bl-size-m); max-height: var(--bl-size-m); } .check-mark { position: absolute; display: flex; align-items: center; justify-content: center; @@ -43,6 +58,38 @@ input { background-color: var(--bl-color-neutral-full); }
Sorry, something went wrong.
fix(checkbox): add relative value for position in checkbox container (#…
385d215
…896) Closes #895 Co-authored-by: Erbil Nas <erbil.nas@trendyol.com>
🎉 This issue has been resolved in version 3.2.0 🎉
The release is available on:
Your semantic-release bot 📦🚀
erbilnas
Successfully merging a pull request may close this issue.
Issue description
When the checkbox is wrapped with a dialog, it should take its position relative to the height of the dialog, not the page.
https://stackblitz.com/edit/vue2-vite-starter-ncdgf1?file=index.html,src%2FApp.vue
Media & Screenshots
With position:absolute
Without position:absolute
Baklava Version
3.0.0-beta.14
Operating system
No response
Priority this issue should have
Medium (should be fixed soon)
Please review the checkboxes that are applicable.
The text was updated successfully, but these errors were encountered: