Skip to content

Commit

Permalink
fix: adjusted height of app cause of integrations header layout change
Browse files Browse the repository at this point in the history
  • Loading branch information
alashchev17 committed Jan 14, 2025
1 parent 7c045c0 commit ba03f59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/features/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export const InnerApp: React.FC<AppProps> = ({ style }: AppProps) => {
alignItems: "stretch",
height:
page.name === "integrations page" && isPaddingApplied
? "calc(100vh - 80px)"
? "calc(100vh - 50px)"
: "100vh",
...style,
}}
Expand Down
2 changes: 1 addition & 1 deletion src/features/Integrations/Integrations.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const Integrations: React.FC<IntegrationsProps> = ({
host={host}
style={{
padding: 0,
marginTop: isInnerIntegrationSelected ? 80 : 0,
marginTop: isInnerIntegrationSelected ? 50 : 0,
}}
>
{!isInnerIntegrationSelected && (
Expand Down

0 comments on commit ba03f59

Please sign in to comment.