Improvements #25
5 changed files with 1450 additions and 370 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -4,4 +4,5 @@ public
|
||||||
.hugo_build.lock
|
.hugo_build.lock
|
||||||
node_modules
|
node_modules
|
||||||
yarn.lock
|
yarn.lock
|
||||||
package-lock.json
|
package-lock.json
|
||||||
|
.yarn
|
||||||
|
|
1
.yarnrc.yml
Normal file
1
.yarnrc.yml
Normal file
|
@ -0,0 +1 @@
|
||||||
|
nodeLinker: node-modules
|
|
@ -3,18 +3,21 @@
|
||||||
font-family: "Spline Sans";
|
font-family: "Spline Sans";
|
||||||
src: url({{ "fonts/SplineSans-Regular.woff2" | relURL }}) format('woff');
|
src: url({{ "fonts/SplineSans-Regular.woff2" | relURL }}) format('woff');
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
|
font-display: swap;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Spline Sans";
|
font-family: "Spline Sans";
|
||||||
src: url({{ "fonts/SplineSans-Medium.woff2" | relURL }}) format('woff');
|
src: url({{ "fonts/SplineSans-Medium.woff2" | relURL }}) format('woff');
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
|
font-display: swap;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Spline Sans";
|
font-family: "Spline Sans";
|
||||||
src: url({{ "fonts/SplineSans-Bold.woff2" | relURL }}) format('woff');
|
src: url({{ "fonts/SplineSans-Bold.woff2" | relURL }}) format('woff');
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
|
font-display: swap;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
|
@ -12,5 +12,9 @@
|
||||||
"@alpinejs/persist": "^3.10.4",
|
"@alpinejs/persist": "^3.10.4",
|
||||||
"alpinejs": "^3.10.4",
|
"alpinejs": "^3.10.4",
|
||||||
"tailwindcss": "^3.2.1"
|
"tailwindcss": "^3.2.1"
|
||||||
|
},
|
||||||
|
"volta": {
|
||||||
|
"node": "18.12.1",
|
||||||
|
"yarn": "3.3.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue