Accordion: Theming content background not working #5997
Labels
Type: Bug
Issue contains a bug related to a specific component. Something about the component is not working
Milestone
Describe the bug
components/lib/accordion/style/AccordionStyle.js
Changing background for the content in the accordion does not work. There is a mistake present in the code, ther should not be a color: property after background:
.p-accordioncontent-content { /../ background: color: ${dt('accordion.content.background')}; /../ }
it should be:
.p-accordioncontent-content { /../ background: ${dt('accordion.content.background')}; /../ }
Reproducer
PrimeVue version
4.0.0-rc.2
Vue version
3.x
Language
TypeScript
Build / Runtime
Nuxt
Browser(s)
No response
Steps to reproduce the behavior
Check the applied background styling for Accordion-content-content.
Expected behavior
No response
The text was updated successfully, but these errors were encountered: