Skip to content

Commit

Permalink
Merge pull request #6157 from melloware/PR6156
Browse files Browse the repository at this point in the history
Fix #6156: Speeddial Tailwind use correct parent prop
  • Loading branch information
nitrogenous authored Mar 15, 2024
2 parents d00cf0f + 1bd0b4f commit de53c40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/lib/passthrough/tailwind/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -729,9 +729,9 @@ const Tailwind = {
speeddial: {
root: 'absolute flex',
button: {
root: ({ state }) => ({
root: ({ parent }) => ({
className: classNames('w-16 !h-16 !rounded-full justify-center z-10', {
'rotate-45': state.visible
'rotate-45': parent.state.visible
})
}),
label: {
Expand Down

0 comments on commit de53c40

Please sign in to comment.