@fiscozen/composables 0.1.2 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiscozen/composables",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Design System utility composables",
5
5
  "main": "src/index.ts",
6
6
  "type": "module",
@@ -244,7 +244,7 @@ export const useFloating = (
244
244
 
245
245
  safeElementDomRef.value.style.top = `${float.position.y}px`
246
246
  safeElementDomRef.value.style.left = `${float.position.x}px`
247
- safeElementDomRef.value.style.position = 'absolute'
247
+ safeElementDomRef.value.style.position = 'fixed'
248
248
  safeElementDomRef.value.style.display = 'flex'
249
249
 
250
250
  rect.value = safeElementDomRef.value.getBoundingClientRect()