Skip to content

Commit be6ae26

Browse files
authored
feat: change floating merge styles order (#237)
1 parent edd3b1c commit be6ae26

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "flowbite-qwik",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "Official Qwik components built for Flowbite and Tailwind CSS",
55
"keywords": [
66
"design-system",

packages/lib/src/components/Floating/Floating.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ export const RenderFloatingElement = component$<RenderFloatingElementProps>(({ r
1313
ref={ref}
1414
class={twMerge(
1515
'absolute z-10 inline-block transition-opacity duration-300',
16-
isVisible ? 'block opacity-100' : 'pointer-events-none hidden opacity-0',
1716
clsx(classList),
17+
isVisible ? 'block opacity-100' : 'pointer-events-none hidden opacity-0',
1818
)}
1919
{...props}
2020
>

0 commit comments

Comments
 (0)