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