File tree Expand file tree Collapse file tree 2 files changed +5
-11
lines changed
(public)/repos/[language]/_components Expand file tree Collapse file tree 2 files changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -118,10 +118,7 @@ export function Sorter() {
118
118
return (
119
119
< div className = "flex items-center justify-center gap-4 mb-8" >
120
120
< div className = "dropdown group dropdown-hover" >
121
- < Button
122
- tabIndex = { 0 }
123
- className = "bg-hacktoberfest-blue border-hacktoberfest-light text-hacktoberfest-light hover:bg-primary-btn-hover-gradient transition-colors duration-200"
124
- >
121
+ < Button tabIndex = { 0 } >
125
122
< Code className = "w-6 h-6 mr-2" />
126
123
Language
127
124
</ Button >
@@ -145,10 +142,7 @@ export function Sorter() {
145
142
</ div >
146
143
</ div >
147
144
< div className = "dropdown dropdown-hover group" >
148
- < Button
149
- tabIndex = { 0 }
150
- className = "bg-hacktoberfest-blue border-hacktoberfest-light text-hacktoberfest-light hover:bg-primary-btn-hover-gradient transition-colors duration-200"
151
- >
145
+ < Button tabIndex = { 0 } >
152
146
< ArrowUpAZ className = "w-6 h-6 mr-2" />
153
147
{ selectedSort ( ) }
154
148
</ Button >
Original file line number Diff line number Diff line change 1
1
import '@/styles/globals.css' ;
2
2
import Script from 'next/script' ;
3
3
import type { Metadata , Viewport } from 'next' ;
4
- import { Space_Grotesk } from 'next/font/google' ;
4
+ import { Atkinson_Hyperlegible_Mono } from 'next/font/google' ;
5
5
import { unstable_ViewTransition as ViewTransition } from 'react' ;
6
6
import { Toaster } from 'react-hot-toast' ;
7
7
import { SessionProvider } from 'next-auth/react' ;
8
8
import { Footer } from '@/components/footer' ;
9
9
import { ReportModal } from '@/components/report-modal' ;
10
10
import { env } from '@/env.mjs' ;
11
11
12
- const spaceGrotesk = Space_Grotesk ( {
12
+ const atkinsonHyperlegibleMono = Atkinson_Hyperlegible_Mono ( {
13
13
subsets : [ 'latin' ] ,
14
14
weight : [ '400' , '500' ] ,
15
15
display : 'swap' ,
@@ -18,7 +18,7 @@ const spaceGrotesk = Space_Grotesk({
18
18
19
19
export default function RootLayout ( { children } : React . PropsWithChildren ) {
20
20
return (
21
- < html className = { spaceGrotesk . variable } >
21
+ < html className = { atkinsonHyperlegibleMono . variable } >
22
22
< body className = "font-sans font-normal bg-hacktoberfest-blue" >
23
23
< ViewTransition >
24
24
{ children }
You can’t perform that action at this time.
0 commit comments