Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ export const StyledCard = styled(Card)<StyledCardProps>`
export const DismissDialog = styled.div`
display: flex;
justify-content: space-between;
padding: 8px;
padding: 7px;
align-items: center;
margin: -8px;
margin: -7px;
background: ${({ theme }) => theme.colors.v3.surface.sidePanelHeader};

${subscriptRegularTypography}
Expand Down
6 changes: 4 additions & 2 deletions src/components/common/v3/Card/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ export const Container = styled.div`
`;

const Section = styled.div`
padding: 8px;
padding: 7px;
height: 100%;
`;

export const Content = Section;
export const Content = styled(Section)`
padding: 8px 7px;
`;

export const Header = styled(Section)`
border-bottom: 1px solid ${({ theme }) => theme.colors.v3.stroke.primary};
Expand Down
2 changes: 1 addition & 1 deletion src/components/common/v3/NewButton/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export const PrimaryBorderlessButton = styled(BaseButton)`
`;

export const SecondaryBorderlessButton = styled(BaseButton)`
padding: 6px 0;
padding: 5px 0;
color: ${({ theme }) => theme.colors.v3.icon.tertiary};
border: 1px solid transparent;
background: none;
Expand Down