Skip to content

Commit

Permalink
Revert "101/fix-espacamento-do-botao-no-card-de-topico"
Browse files Browse the repository at this point in the history
  • Loading branch information
Wander06 authored Nov 1, 2024
1 parent 253b433 commit 1abc971
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions src/components/BaseCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ interface CardProps{
title: string;
description?: string;
textImage?: string;

image?: string;
route: string;
}
Expand All @@ -22,12 +21,11 @@ const cardStyles = {
WebkitLineClamp: 6,
}

const cardActionsStyle = {
paddingBottom: 2,
paddingLeft: 2,
height: 'auto',
justifyContent: 'left',
};
const cardActionsStyle = {
paddingBottom: 4,
paddingLeft: 2,
height: 20
}

export const BaseCard: React.FC<CardProps> = ({title, description, textImage, image, route}) => {
const router = useRouter()
Expand Down

0 comments on commit 1abc971

Please sign in to comment.