fix: date-picker overflow (#7514)
Fixes #7014 This PR fixes date-picker overflow across all screen sizes. **Before:**  **After:** [Screencast from 2024-10-08 23-41-36.webm](https://github.com/user-attachments/assets/a02c2866-8784-4e19-b914-ac3e97512dce)
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
import { useRef, useState } from 'react';
|
||||
import styled from '@emotion/styled';
|
||||
import { useRef, useState } from 'react';
|
||||
import { Nullable } from 'twenty-ui';
|
||||
|
||||
import {
|
||||
@ -16,9 +16,6 @@ const StyledCalendarContainer = styled.div`
|
||||
border: 1px solid ${({ theme }) => theme.border.color.light};
|
||||
border-radius: ${({ theme }) => theme.border.radius.md};
|
||||
box-shadow: ${({ theme }) => theme.boxShadow.strong};
|
||||
top: 0;
|
||||
|
||||
position: absolute;
|
||||
`;
|
||||
|
||||
export type DateInputProps = {
|
||||
|
||||
Reference in New Issue
Block a user