Skip to content

Commit

Permalink
feat(Card,CardContent): remove specific styles
Browse files Browse the repository at this point in the history
  • Loading branch information
troff8 authored and troff8 committed Jul 25, 2023
1 parent fb98e68 commit e5d3a64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { gray4, radiusM } from '@taskany/colors';
export const Card = styled.div`
position: relative;
box-sizing: border-box;
min-height: 150px;
min-height: auto;
border: 1px solid ${gray4};
border-radius: ${radiusM};
Expand Down
2 changes: 1 addition & 1 deletion src/components/CardContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import styled from 'styled-components';
export const CardContent = styled.div`
position: relative;
box-sizing: border-box;
padding: 12px 14px 60px;
padding: 12px 14px;
`;

export default CardContent;

0 comments on commit e5d3a64

Please sign in to comment.