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
If scale is applied as stated in the docs, the radio is misplaced https://primevue.org/theming/styled/#scale
https://stackblitz.com/edit/b37yw9?file=src%2FApp.vue
4.2.3
4.x
TypeScript
Nuxt
All. Any.
<RadioButton v-model="type" input-id="preparation" name="preparation" value="preparation" /> <label for="preparation">{{ t('preparation') }}</label>
Place a RadioButton and change html font size to 14px
html { font-size: 14px; }
I have to fix it forcing p-radiobutton-box to 20px instead of 21px that is being calculated
.p-radiobutton-box { height: 20px !important; width: 20px !important; }
You can check it in the reproduction, that is actually the example from your docs. Some are ok, some are not.
The text was updated successfully, but these errors were encountered:
Due to PrimeVue team's busy roadmap, this issue is available for anyone to work on. Make sure to reference this issue in your pull request. ✨ Thank you for your contribution! ✨
Sorry, something went wrong.
No branches or pull requests
Describe the bug
If scale is applied as stated in the docs, the radio is misplaced
https://primevue.org/theming/styled/#scale
Reproducer
https://stackblitz.com/edit/b37yw9?file=src%2FApp.vue
PrimeVue version
4.2.3
Vue version
4.x
Language
TypeScript
Build / Runtime
Nuxt
Browser(s)
All. Any.
Steps to reproduce the behavior
<RadioButton v-model="type" input-id="preparation" name="preparation" value="preparation" /> <label for="preparation">{{ t('preparation') }}</label>
Place a RadioButton and change html font size to 14px
html { font-size: 14px; }
I have to fix it forcing p-radiobutton-box to 20px instead of 21px that is being calculated
.p-radiobutton-box { height: 20px !important; width: 20px !important; }
You can check it in the reproduction, that is actually the example from your docs. Some are ok, some are not.
Expected behavior
The text was updated successfully, but these errors were encountered: