fix: website fonts

This commit is contained in:
iCrawl
2022-10-09 02:10:35 +02:00
parent a5d2ce2059
commit 5f72d8b645
6 changed files with 44 additions and 5 deletions

View File

@@ -2,7 +2,10 @@ import type { PropsWithChildren } from 'react';
export function DiscordMessages({ rounded, children }: PropsWithChildren<{ rounded?: boolean }>) {
return (
<div className={`pt-0.1 bg-[rgb(54_57_63)] pb-4 ${rounded ? 'rounded' : ''}`} id="messages-wrapper">
<div
className={`font-source-sans-pro pt-0.1 bg-[rgb(54_57_63)] pb-4 ${rounded ? 'rounded' : ''}`}
id="messages-wrapper"
>
{children}
</div>
);