fix(enums): dark theme colors

This commit is contained in:
iCrawl
2022-07-25 01:38:17 +02:00
parent 4fff6076e7
commit 5a3c9996e0
2 changed files with 17 additions and 10 deletions

View File

@@ -10,8 +10,8 @@ export interface EnumProps {
export function Enum({ data }: EnumProps) {
return (
<DocContainer name={data.name} kind={data.kind} excerpt={data.excerpt} summary={data.summary}>
<Section title="Members">
<div className="flex flex-col space-y-5">
<Section title="Members" className="dark:text-white">
<div className="flex flex-col gap-5">
{data.members.map((member) => (
<CodeListing
key={member.name}