fix: recordBoard sticky header + scrollThumb (#8946)
Fixes: #8944 [Screencast from 2024-12-08 00-43-19.webm](https://github.com/user-attachments/assets/b6e15fcc-46a1-4ab0-aacf-86056248bb69) --------- Co-authored-by: ehconitin <nitinkoche03@gmail.com>
This commit is contained in:
@ -46,7 +46,6 @@ const StyledColumnContainer = styled.div`
|
||||
const StyledContainerContainer = styled.div`
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
`;
|
||||
|
||||
const StyledBoardContentContainer = styled.div`
|
||||
|
||||
@ -54,9 +54,9 @@ const StyledContainer = styled.div`
|
||||
`;
|
||||
|
||||
const StyledContainerWithPadding = styled.div`
|
||||
height: calc(100% - 40px);
|
||||
box-sizing: border-box;
|
||||
height: calc(100% - ${({ theme }) => theme.spacing(10)});
|
||||
margin-left: ${({ theme }) => theme.spacing(2)};
|
||||
width: 100%;
|
||||
`;
|
||||
|
||||
export const RecordIndexContainer = () => {
|
||||
|
||||
@ -17,7 +17,7 @@ import 'overlayscrollbars/overlayscrollbars.css';
|
||||
|
||||
const StyledScrollWrapper = styled.div<{ scrollHide?: boolean }>`
|
||||
display: flex;
|
||||
height: fit-content;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
|
||||
.os-scrollbar-handle {
|
||||
|
||||
Reference in New Issue
Block a user