fix: footer / sidebar / deprecation alert

This commit is contained in:
iCrawl
2022-08-22 22:15:50 +02:00
parent f7ce9f8533
commit ba3e0ed348
17 changed files with 408 additions and 337 deletions

View File

@@ -34,7 +34,7 @@ export function ExampleBlock({ children, exampleIndex }: ExampleBlockProps): JSX
export function DeprecatedBlock({ children }: { children: ReactNode }): JSX.Element {
return (
<Alert icon={<VscWarning />} title="Deprecated" variant="filled" color="red" radius="xs">
<Alert icon={<VscWarning />} title="Deprecated" variant="outline" color="red" radius="xs">
{children}
</Alert>
);