feat: tipografia aldatzen du

This commit is contained in:
2023-12-28 18:17:59 +01:00
parent cc945ce684
commit 3659a8811d
4 changed files with 5 additions and 4 deletions

View File

@@ -39,8 +39,8 @@ module.exports = {
fonts: { fonts: {
google: [ google: [
{ {
family: 'Almarai', family: 'Lato',
variants: ['300', '700'], variants: ['400', '700'],
fontDisplay: 'swap', fontDisplay: 'swap',
}, },
], ],

View File

@@ -10,7 +10,8 @@ html {
} }
body { body {
font-family: 'Almarai', sans-serif; /* OHARRA: Logoan eta irudi korporatiboan Söhne familia erabili da */
font-family: 'Lato', sans-serif;
@include baseFont; @include baseFont;
font-weight: var(--font-weight-bold); font-weight: var(--font-weight-bold);

View File

@@ -1,4 +1,4 @@
:root { :root {
--font-weight-regular: 300; --font-weight-regular: 400;
--font-weight-bold: 700; --font-weight-bold: 700;
} }