From 5c4e44dbeaeecfbabbbf1fd7d433ac9f94641be3 Mon Sep 17 00:00:00 2001 From: Usame Algan Date: Fri, 9 Feb 2024 15:14:01 +0100 Subject: [PATCH] fix: Remove steps badges --- src/components/dashboard/FirstSteps/index.tsx | 3 --- .../dashboard/FirstSteps/styles.module.css | 12 ------------ 2 files changed, 15 deletions(-) diff --git a/src/components/dashboard/FirstSteps/index.tsx b/src/components/dashboard/FirstSteps/index.tsx index cacec18a18..03cd3527d5 100644 --- a/src/components/dashboard/FirstSteps/index.tsx +++ b/src/components/dashboard/FirstSteps/index.tsx @@ -19,13 +19,11 @@ const calculateProgress = (items: StatusProgressItems) => { const StatusCard = ({ badge, - step, title, content, completed, }: { badge: string - step: number title: string content: string completed: boolean @@ -43,7 +41,6 @@ const StatusCard = ({ )} - {step} {title} {content} diff --git a/src/components/dashboard/FirstSteps/styles.module.css b/src/components/dashboard/FirstSteps/styles.module.css index 5462677854..8a8ed5a421 100644 --- a/src/components/dashboard/FirstSteps/styles.module.css +++ b/src/components/dashboard/FirstSteps/styles.module.css @@ -7,18 +7,6 @@ position: absolute; } -.circleBadge { - width: 24px; - height: 24px; - border-radius: 50%; - background-color: var(--color-secondary-light); - text-align: center; - font-weight: normal; - font-size: 16px; - display: inline-block; - margin-right: var(--space-1); -} - .card { display: flex; flex-direction: column;