fix(accordioncontent): ensure `background-color` is declared properly (#6032)

* fix for #5997

This is a fix for #5997

* Update packages/primevue/src/accordion/style/AccordionStyle.js
pull/6035/head
Neil Merton 2024-07-09 09:44:27 +01:00 committed by GitHub
parent 0c168516b0
commit cfe2b0cf9f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ const theme = ({ dt }) => `
border-style: solid;
border-width: ${dt('accordion.content.border.width')};
border-color: ${dt('accordion.content.border.color')};
background: color: ${dt('accordion.content.background')};
background-color: ${dt('accordion.content.background')};
color: ${dt('accordion.content.color')};
padding: ${dt('accordion.content.padding')}
}