mirror of
https://github.com/Motschen/midnightdust-eu.git
synced 2025-12-15 10:05:09 +01:00
chore: update dependencies
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -26,3 +26,4 @@ yarn-error.log*
|
|||||||
# package lock
|
# package lock
|
||||||
#package-lock.json
|
#package-lock.json
|
||||||
.astro/settings.json
|
.astro/settings.json
|
||||||
|
/.astro
|
||||||
|
|||||||
4994
package-lock.json
generated
4994
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
10
package.json
10
package.json
@@ -11,9 +11,9 @@
|
|||||||
"preview": "astro preview"
|
"preview": "astro preview"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/mdx": "^4.0.3",
|
"@astrojs/mdx": "^4.0.7",
|
||||||
"@astrojs/partytown": "^2.1.2",
|
"@astrojs/partytown": "^2.1.3",
|
||||||
"@astrojs/tailwind": "^5.1.4",
|
"@astrojs/tailwind": "^5.1.5",
|
||||||
"@iconify-json/ion": "^1.2.0",
|
"@iconify-json/ion": "^1.2.0",
|
||||||
"@iconify-json/line-md": "^1.2.4",
|
"@iconify-json/line-md": "^1.2.4",
|
||||||
"@iconify-json/mdi": "^1.2.0",
|
"@iconify-json/mdi": "^1.2.0",
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"@typescript-eslint/eslint-plugin": "^8.6.0",
|
"@typescript-eslint/eslint-plugin": "^8.6.0",
|
||||||
"@typescript-eslint/parser": "^8.6.0",
|
"@typescript-eslint/parser": "^8.6.0",
|
||||||
"accessible-astro-components": "^2.3.6",
|
"accessible-astro-components": "^2.3.6",
|
||||||
"astro": "^5.1.1",
|
"astro": "^5.1.10",
|
||||||
"astro-compress": "^2.3.1",
|
"astro-compress": "^2.3.1",
|
||||||
"astro-icon": "^1.1.1",
|
"astro-icon": "^1.1.1",
|
||||||
"eslint": "^9.10.0",
|
"eslint": "^9.10.0",
|
||||||
@@ -35,7 +35,7 @@
|
|||||||
"tailwindcss": "^3.4.12"
|
"tailwindcss": "^3.4.12"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/alpinejs": "^0.4.1",
|
"@astrojs/alpinejs": "^0.4.3",
|
||||||
"@types/alpinejs": "^3.13.10",
|
"@types/alpinejs": "^3.13.10",
|
||||||
"@types/rellax": "^1.7.7",
|
"@types/rellax": "^1.7.7",
|
||||||
"alpinejs": "^3.14.1",
|
"alpinejs": "^3.14.1",
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
@use "sass:map";
|
||||||
|
@use "sass:meta";
|
||||||
// | -------------------------------------------------------------
|
// | -------------------------------------------------------------
|
||||||
// | Breakpoint
|
// | Breakpoint
|
||||||
// | -------------------------------------------------------------
|
// | -------------------------------------------------------------
|
||||||
@@ -10,11 +12,11 @@ $breakpoints: (
|
|||||||
) !default;
|
) !default;
|
||||||
|
|
||||||
@mixin breakpoint($breakpoint) {
|
@mixin breakpoint($breakpoint) {
|
||||||
@if map-has-key($breakpoints, $breakpoint) {
|
@if map.has-key($breakpoints, $breakpoint) {
|
||||||
@media (min-width: map-get($breakpoints, $breakpoint)) {
|
@media (min-width: map.get($breakpoints, $breakpoint)) {
|
||||||
@content;
|
@content;
|
||||||
}
|
}
|
||||||
} @else if (type_of($breakpoint) == number) {
|
} @else if (meta.type_of($breakpoint) == number) {
|
||||||
@media (min-width: $breakpoint+"px") {
|
@media (min-width: $breakpoint+"px") {
|
||||||
@content;
|
@content;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user