Skip to content

Commit

Permalink
Merge branch 'add-font-tahoma' into asia
Browse files Browse the repository at this point in the history
  • Loading branch information
meysamnorouzii committed May 19, 2024
2 parents e8fa2f3 + 9ad9edb commit fe46798
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,10 @@
-webkit-box-align: right;
-ms-flex-align: right;
align-items: right;
}

@layer utilities{
.font-tahoma {
font-family: Tahoma;
}
}
3 changes: 2 additions & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ export default function RootLayout({ children }: RootLayoutProps) {
className={cn(
'font-sans antialiased',
fontSans.variable,
fontMono.variable
fontMono.variable,
'font-tahoma',
)}
>
<Toaster />
Expand Down

0 comments on commit fe46798

Please sign in to comment.