Skip to content

Commit a0545aa

Browse files
committed
chore: remove the background color
1 parent 1c70d28 commit a0545aa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/Feature.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ type Props = {
99

1010
export const Feature = ({ icon, color, title, description }: Props) => {
1111
return (
12-
<div className="bg-gray-50 dark:bg-neutral-900 flex gap-4 rounded p-4 px-6 h-full items-center">
12+
<div className="flex gap-4 m-4 h-full items-center">
1313
<div
1414
aria-hidden
1515
className={`flex-shrink-0 size-9 flex items-center justify-center rounded ${color}`}

components/UseCases.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const UseCases = ({ codes }: Props) => {
3232
{["Testing", "API Mocking", "E2E", "Seeding"].map((tab) => (
3333
<Tab
3434
key={tab}
35-
className="first:rounded-l last:rounded-r text-sm !ring-0 bg-neutral-100 dark:bg-neutral-800 !ring-offset-0 text-neutral-900 data-[focus]:bg-neutral-700 data-[selected]:bg-neutral-900 dark:data-[selected]:bg-neutral-900 dark:text-neutral-50 py-2.5 px-6 data-[selected]:text-white data-[hover]:bg-neutral-700 dark:data-[hover]:bg-neutral-800 data-[hover]:text-white"
35+
className="first:rounded-l last:rounded-r text-sm !ring-0 bg-gray-100 dark:bg-neutral-800 !ring-offset-0 text-neutral-900 data-[focus]:bg-neutral-700 data-[selected]:bg-neutral-900 dark:data-[selected]:bg-neutral-900 dark:text-neutral-50 py-2.5 px-6 data-[selected]:text-white data-[hover]:bg-neutral-700 dark:data-[hover]:bg-neutral-800 data-[hover]:text-white"
3636
>
3737
{tab}
3838
</Tab>

0 commit comments

Comments
 (0)