diff --git a/apps/site/components/Common/Search/utils.ts b/apps/site/components/Common/Search/utils.ts index 429f47b3a7d58..fdab2c893008f 100644 --- a/apps/site/components/Common/Search/utils.ts +++ b/apps/site/components/Common/Search/utils.ts @@ -2,6 +2,9 @@ import tailwindConfig from '@/tailwind.config'; const colors = tailwindConfig.theme.colors; export const themeConfig = { + typography: { + '--font-primary': 'var(--font-open-sans)', + }, colors: { light: { '--text-color-primary': colors.neutral[900], diff --git a/apps/site/components/Common/Skeleton/index.tsx b/apps/site/components/Common/Skeleton/index.tsx index 640c1f2e3852d..8b8d43753d608 100644 --- a/apps/site/components/Common/Skeleton/index.tsx +++ b/apps/site/components/Common/Skeleton/index.tsx @@ -1,12 +1,14 @@ +import classNames from 'classnames'; import type { FC, PropsWithChildren } from 'react'; import { isValidElement } from 'react'; import styles from './index.module.css'; -type SkeletonProps = { hide?: boolean; loading?: boolean }; +type SkeletonProps = { hide?: boolean; loading?: boolean; className?: string }; const Skeleton: FC> = ({ children, + className, hide = false, loading = true, }) => { @@ -26,7 +28,7 @@ const Skeleton: FC> = ({