mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-14 15:54:13 +01:00
fix: corriger la syntaxe CSS et mettre à jour le hash généré par Wrangler
This commit is contained in:
@@ -2,12 +2,10 @@
|
|||||||
@import "@nuxt/ui";
|
@import "@nuxt/ui";
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--animate-wave: wave 3s infinite
|
--animate-wave: wave 3s infinite;
|
||||||
|
|
||||||
--ui-black: #000000;
|
--ui-black: #000000;
|
||||||
--ui-white: #ffffff;
|
--ui-white: #ffffff;
|
||||||
--ui-bg-black: #0a0a0a;
|
|
||||||
--ui-bg-white: #f8f8f8;
|
|
||||||
--ui-bg: #f8f8f8;
|
--ui-bg: #f8f8f8;
|
||||||
|
|
||||||
--ui-font-family: 'DM Sans', sans-serif;
|
--ui-font-family: 'DM Sans', sans-serif;
|
||||||
@@ -15,13 +13,12 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.dark {
|
.dark {
|
||||||
--animate-wave: wave 3s infinite --ui-black: #000000;
|
--animate-wave: wave 3s infinite;
|
||||||
|
|
||||||
|
--ui-black: #000000;
|
||||||
--ui-white: #ffffff;
|
--ui-white: #ffffff;
|
||||||
--ui-bg-white: #f8f8f8;
|
--ui-bg: #141414;
|
||||||
--ui-bg-black: #0a0a0a;
|
|
||||||
--ui-bg: #0a0a0a;
|
|
||||||
|
|
||||||
--ui-font-family: 'DM Sans', sans-serif;
|
--ui-font-family: 'DM Sans', sans-serif;
|
||||||
transition-duration: 0.7s;
|
transition-duration: 0.7s;
|
||||||
}
|
}
|
||||||
@@ -31,12 +28,15 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@keyframes wave {
|
@keyframes wave {
|
||||||
|
|
||||||
0%,
|
0%,
|
||||||
50%,
|
50%,
|
||||||
100% {
|
100% {
|
||||||
transform: rotate(-12deg);
|
transform: rotate(-12deg);
|
||||||
}
|
}
|
||||||
25%, 75% {
|
|
||||||
|
25%,
|
||||||
|
75% {
|
||||||
transform: rotate(3deg) scale(1.5);
|
transform: rotate(3deg) scale(1.5);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
5
worker-configuration.d.ts
vendored
5
worker-configuration.d.ts
vendored
@@ -1,7 +1,10 @@
|
|||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
// Generated by Wrangler by running `wrangler types` (hash: b230e84b72630c8509fa363326a6bb1d)
|
// Generated by Wrangler by running `wrangler types` (hash: 62d6edfcbe10d837218cb1a518a9ad0a)
|
||||||
// Runtime types generated with workerd@1.20251213.0 2025-12-13 nodejs_compat
|
// Runtime types generated with workerd@1.20251213.0 2025-12-13 nodejs_compat
|
||||||
declare namespace Cloudflare {
|
declare namespace Cloudflare {
|
||||||
|
interface GlobalProps {
|
||||||
|
mainModule: typeof import("./.output/server/index");
|
||||||
|
}
|
||||||
interface Env {
|
interface Env {
|
||||||
CACHE: KVNamespace;
|
CACHE: KVNamespace;
|
||||||
NUXT_PUBLIC_I18N_BASE_URL: string;
|
NUXT_PUBLIC_I18N_BASE_URL: string;
|
||||||
|
|||||||
Reference in New Issue
Block a user