diff --git a/src/stores/useDatePicker.js b/src/stores/useDatePicker.js index 46eef0f..35121b5 100644 --- a/src/stores/useDatePicker.js +++ b/src/stores/useDatePicker.js @@ -68,8 +68,8 @@ export function useDatePicker() { dpEl.style.display = 'block'; dpEl.style.position = 'fixed'; - dpEl.style.top = `${rect.bottom + window.scrollY}px`; - dpEl.style.left = `${rect.left + window.scrollX}px`; + dpEl.style.top = `${rect.bottom + window.scrollY}px !important;`; + dpEl.style.left = `${rect.left + window.scrollX}px !important;`; dpEl.style.transform = 'translate(-50%, -50%)'; dpEl.style.zIndex = '9999'; dpEl.style.border = 'none';