mirror of
https://github.com/lingble/twenty.git
synced 2025-10-30 12:22:29 +00:00
Fixed scroll wrapper for settings page container (#7124)
Padding was set on global page component while it is needed only for settings page container component.
This commit is contained in:
@@ -20,6 +20,7 @@ const StyledSettingsPageContainer = styled.div<{ width?: number }>`
|
|||||||
}
|
}
|
||||||
return OBJECT_SETTINGS_WIDTH + 'px';
|
return OBJECT_SETTINGS_WIDTH + 'px';
|
||||||
}};
|
}};
|
||||||
|
padding-bottom: ${({ theme }) => theme.spacing(20)};
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export const SettingsPageContainer = ({
|
export const SettingsPageContainer = ({
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ const StyledPanel = styled.div`
|
|||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
overflow-y: hidden;
|
overflow-y: hidden;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding-bottom: ${({ theme }) => theme.spacing(10)};
|
|
||||||
`;
|
`;
|
||||||
|
|
||||||
type PagePanelProps = {
|
type PagePanelProps = {
|
||||||
|
|||||||
Reference in New Issue
Block a user