Change default font to Inter

This commit is contained in:
2023-04-22 20:42:46 +02:00
parent 83399330a9
commit b19f3ba49f
2 changed files with 11 additions and 1 deletions

View File

@@ -3,6 +3,11 @@
// The variables you want to modify // The variables you want to modify
// $font-size-root: 20px; // $font-size-root: 20px;
$font-inter: 'Inter', sans-serif;
@use 'vuetify' with (
$body-font-family: $font-inter,
);
p a { p a {
color: rgb(var(--v-theme-primary)); color: rgb(var(--v-theme-primary));
text-decoration: none; text-decoration: none;

View File

@@ -32,7 +32,12 @@ export default defineNuxtConfig({
{ hid: 'description', name: 'description', content: '' }, { hid: 'description', name: 'description', content: '' },
{ name: 'format-detection', content: 'telephone=no' }, { name: 'format-detection', content: 'telephone=no' },
], ],
link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }], link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{ rel: 'preconnect', href: 'https://fonts.googleapis.com' },
{ rel: 'preconnect', href: 'https://fonts.gstatic.com' },
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/css2?family=Inter&display=swap' }
],
} }
}, },