Improvements #25

Merged
lexik merged 2 commits from dev into master 2022-12-02 11:44:58 +01:00
5 changed files with 1450 additions and 370 deletions

3
.gitignore vendored
View file

@ -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
View file

@ -0,0 +1 @@
nodeLinker: node-modules

View file

@ -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>

View file

@ -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"
} }
} }

1809
yarn.lock

File diff suppressed because it is too large Load diff