Skip to content

Commit

Permalink
fix(design): changed deprecated badge round full to medium
Browse files Browse the repository at this point in the history
  • Loading branch information
tdkn committed Jan 26, 2023
1 parent a0ee3cd commit 8e0f08f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/__tests__/__snapshots__/index.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ exports[`Home > renders homepage unchanged 1`] = `
February 24, 2021
</div>
<span
class="inline-flex items-center rounded-full bg-yellow-100 px-3 py-0.5 text-xs font-medium text-yellow-800 dark:bg-yellow-100/20 dark:text-orange-500"
class="inline-flex items-center rounded-md bg-yellow-100 px-2 py-0.5 text-xs font-medium text-yellow-800 dark:bg-yellow-100/20 dark:text-orange-500"
>
Deprecated
</span>
Expand Down Expand Up @@ -122,7 +122,7 @@ exports[`Home > renders homepage unchanged 1`] = `
April 9, 2020
</div>
<span
class="inline-flex items-center rounded-full bg-yellow-100 px-3 py-0.5 text-xs font-medium text-yellow-800 dark:bg-yellow-100/20 dark:text-orange-500"
class="inline-flex items-center rounded-md bg-yellow-100 px-2 py-0.5 text-xs font-medium text-yellow-800 dark:bg-yellow-100/20 dark:text-orange-500"
>
Deprecated
</span>
Expand Down
2 changes: 1 addition & 1 deletion src/components/common/Deprecated/Deprecated.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { classNames } from "~/lib/style";
const Deprecated = ({ className }: ComponentPropsWithoutRef<"span">) => (
<span
className={classNames(
"inline-flex items-center rounded-full bg-yellow-100 px-3 py-0.5 text-xs font-medium text-yellow-800 dark:bg-yellow-100/20 dark:text-orange-500",
"inline-flex items-center rounded-md bg-yellow-100 px-2 py-0.5 text-xs font-medium text-yellow-800 dark:bg-yellow-100/20 dark:text-orange-500",
className
)}
>
Expand Down

1 comment on commit 8e0f08f

@vercel
Copy link

@vercel vercel bot commented on 8e0f08f Jan 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

blog – ./

blog-tdkn.vercel.app
blog-git-main-tdkn.vercel.app
tdkn.dev
tdkn-dev.vercel.app

Please sign in to comment.