Skip to content

Commit

Permalink
Fix page style. Remove bottom beige rectangle (airbytehq#7364)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamakase authored and schlattk committed Jan 4, 2022
1 parent 36513cc commit 6ed1d63
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ import styled from "styled-components";

const Content = styled.div`
overflow-y: auto;
height: calc(100% - 67px);
margin-top: -17px;
padding-top: 17px;
height: 100%;
`;

const Page = styled.div`
overflow-y: hidden;
height: 100%;
display: flex;
flex-direction: column;
`;

/**
Expand Down
1 change: 0 additions & 1 deletion airbyte-webapp/src/components/PageTitle/PageTitle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ export const MainContainer = styled.div<{ withLine?: boolean }>`
padding: 20px 32px 18px;
border-bottom: ${({ theme, withLine }) =>
withLine ? `1px solid ${theme.greyColor20}` : "none"};
margin-bottom: ${({ withLine }) => (withLine ? "17px" : 0)};
position: relative;
z-index: 2;
color: ${({ theme }) => theme.darkPrimaryColor};
Expand Down
2 changes: 1 addition & 1 deletion airbyte-webapp/src/pages/SettingsPage/SettingsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import { CategoryItem } from "components/SideMenu/SideMenu";

const Content = styled.div`
margin: 0 33px 0 27px;
height: 100%;
display: flex;
flex-direction: row;
padding-bottom: 15px;
`;
const MainView = styled.div`
width: 100%;
Expand Down

0 comments on commit 6ed1d63

Please sign in to comment.