feat(theme): better dark theme

This commit is contained in:
iCrawl
2022-07-18 02:35:34 +02:00
parent cd13a4a902
commit ec230faa4d
6 changed files with 19 additions and 19 deletions

View File

@@ -23,7 +23,7 @@ export interface MethodsSectionProps {
export function MethodsSection({ data }: MethodsSectionProps) {
return data.length ? (
<Section title="Methods">
<Section title="Methods" className="dark:text-white">
<MethodList data={data} />
</Section>
) : null;