Skip to content

Commit

Permalink
chore: reverted heading border changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-golovanov committed Nov 5, 2024
1 parent aeb3804 commit a9b10b8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 0 additions & 2 deletions app/client/src/components/formControls/PaginationControl.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ const PaginationContainer = styled.div`
column-gap: var(--ads-v2-spaces-4);
row-gap: var(--ads-v2-spaces-2);
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
border-top: 1px solid var(--ads-v2-color-border);
padding-top: var(--ads-v2-spaces-4);
`;

// using query dynamic input text for both so user can dynamically change these values.
Expand Down
2 changes: 0 additions & 2 deletions app/client/src/components/formControls/SortingControl.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,6 @@ const SortingContainer = styled.div`
display: flex;
gap: var(--ads-v2-spaces-4);
flex-direction: column;
border-top: 1px solid var(--ads-v2-color-border);
padding-top: var(--ads-v2-spaces-4);
`;

const SortingDropdownContainer = styled.div`
Expand Down
4 changes: 2 additions & 2 deletions app/client/src/components/formControls/WhereClauseControl.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ const SecondaryBox = styled.div<{
flex-direction: column;
position: relative;
border: solid 1px var(--ads-v2-color-border);
border-radius: var(--ads-v2-border-radius);
border-width: ${(props) => (props?.showBorder ? "1px" : "0px")};
padding: ${(props) =>
props?.showBorder ? "4px 12px 12px 8px" : "4px 0 12px 0"};
border-top: 1px solid var(--ads-v2-color-border);
props?.showBorder ? "0px 12px 12px 8px" : "4px 0px 12px 0px"};
width: 100%;
// Setting a max width to not have it really elongate on very large screens
Expand Down

0 comments on commit a9b10b8

Please sign in to comment.