[READ-ONLY] Mirror of https://github.com/hacknug/romi-project. romi-project.vercel.app
0

Configure Feed

Select the types of activity you want to include in your feed.

Add Nunito Sans to fonts

Nestor Vera (Jul 27, 2022, 4:37 PM +0200) 79855b8f a116b5da

+3 -1
+1
nuxt.config.ts
··· 20 20 { rel: 'preconnect', href: 'https://fonts.googleapis.com' }, 21 21 { rel: 'preconnect', href: 'https://fonts.gstatic.com', crossorigin: true }, 22 22 { rel: 'stylesheet', href: 'https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&display=swap' }, 23 + { rel: 'stylesheet', href: 'https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap' }, 23 24 ], 24 25 }, 25 26 modules: [
+2 -1
tailwind.config.js
··· 162 162 primary: colors.ink.emerald, 163 163 }, 164 164 fontFamily: { 165 - sans: ['Nunito', ...defaultTheme.fontFamily.sans], 165 + sans: ['Nunito Sans', ...defaultTheme.fontFamily.sans], 166 + rounded: ['Nunito', ...defaultTheme.fontFamily.sans], 166 167 }, 167 168 }, 168 169