Skip to content

Commit 0ab9840

Browse files
committed
feat(stories): change docs component styles
1 parent 33ed262 commit 0ab9840

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/stories/components/Docs/Content/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const Container = ({
1717
return (
1818
<Comp
1919
className={cn(
20-
'custom-scroll box-border flex h-full w-full flex-col gap-8 overflow-y-scroll text-clip !text-base md:!text-lg',
20+
'custom-scroll box-border flex h-full w-full flex-col gap-8 overflow-y-scroll text-clip !text-base !drop-shadow-md md:!text-lg',
2121
className
2222
)}
2323
{...props}

src/stories/components/Docs/Content/paragraph.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const Paragraph = ({
1212
return (
1313
<Comp
1414
className={cn(
15-
'!ml-2 !text-justify !font-sans !text-base !font-normal !text-muted-foreground md:!text-lg',
15+
'!ml-2 !text-justify !font-sans !text-base !font-thin !text-neutral-800 md:!text-lg',
1616
className
1717
)}
1818
{...props}

src/stories/components/Docs/Content/span.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const Span = ({
1212
return (
1313
<Comp
1414
className={cn(
15-
'!font-sans !text-lg !font-bold !text-stone-900',
15+
'!font-sans !text-lg !font-bold !text-neutral-800',
1616
className
1717
)}
1818
{...props}

src/stories/components/Docs/Content/subTopic.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const SubTopic = ({
1212
return (
1313
<Comp
1414
className={cn(
15-
'!m-0 !ml-2 !font-sans !text-lg !font-bold !text-secondary',
15+
'!m-0 !ml-2 !font-sans !text-lg !font-normal !text-neutral-800',
1616
className
1717
)}
1818
{...props}

src/stories/components/Docs/Content/topic.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const Topic = ({
1212
return (
1313
<Comp
1414
className={cn(
15-
'!m-0 !font-sans !text-lg !font-bold !text-foreground md:!text-xl',
15+
'!m-0 !font-sans !text-lg !font-normal !text-neutral-800 md:!text-xl',
1616
className
1717
)}
1818
{...props}

src/stories/components/Docs/Header/subtitle.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const SubTitle = ({
1212
return (
1313
<Comp
1414
className={cn(
15-
'!border-0 !font-sans !text-lg !font-bold !text-secondary md:!text-xl',
15+
'!border-0 !font-sans !text-lg !font-normal !text-neutral-700 drop-shadow-lg md:!text-xl',
1616
className
1717
)}
1818
{...props}

src/stories/components/Docs/Header/title.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const Title = ({
1212
return (
1313
<Comp
1414
className={cn(
15-
'!font-sans !text-xl !font-bold !leading-tight !tracking-tighter !text-foreground md:!text-2xl md:!leading-[1.1]',
15+
'!font-sans !text-xl !font-thin !italic !leading-tight !tracking-tighter !text-neutral-800 md:!text-2xl md:!leading-[1.1]',
1616
className
1717
)}
1818
{...props}

0 commit comments

Comments
 (0)