diff --git a/app/src/components/PageContainer.tsx b/app/src/components/PageContainer.tsx index a29452b..16074df 100644 --- a/app/src/components/PageContainer.tsx +++ b/app/src/components/PageContainer.tsx @@ -9,7 +9,9 @@ interface PageContainerProps { export function PageContainer({ children, className }: PageContainerProps): JSX.Element { return ( - + {children} ); diff --git a/app/src/global.css b/app/src/global.css index def59c8..9f650f0 100644 --- a/app/src/global.css +++ b/app/src/global.css @@ -40,7 +40,7 @@ } @theme { - --font-normal: 'DMSans_400Regular'; - --font-medium: 'DMSans_500Medium'; - --font-semibold: 'DMSans_600SemiBold'; + --font-normal: "DMSans_400Regular"; + --font-medium: "DMSans_500Medium"; + --font-semibold: "DMSans_600SemiBold"; } diff --git a/app/src/lib/typography.ts b/app/src/lib/typography.ts index b0d0fed..41bae40 100644 --- a/app/src/lib/typography.ts +++ b/app/src/lib/typography.ts @@ -1,2 +1 @@ -export const MICRO_LABEL_CLASS = - "text-[11px] font-semibold uppercase tracking-wider text-subtle"; +export const MICRO_LABEL_CLASS = "text-[11px] font-semibold uppercase tracking-wider text-subtle";