From 30ae749c0cce1fda8235035660285c985e08222e Mon Sep 17 00:00:00 2001 From: Remco Date: Thu, 29 Jan 2026 14:51:57 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=86=99=20Fix=20=F0=9F=86=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Updated_Cms/public/build/manifest.json | 40 +++++++------------ .../resources/themes/atom/css/app.scss | 1 - .../resources/themes/atom/tailwind.config.cjs | 13 +++--- .../resources/themes/atom/vite.config.js | 2 + 4 files changed, 24 insertions(+), 32 deletions(-) diff --git a/Updated_Cms/public/build/manifest.json b/Updated_Cms/public/build/manifest.json index 9fa973618f..57ffe156e8 100644 --- a/Updated_Cms/public/build/manifest.json +++ b/Updated_Cms/public/build/manifest.json @@ -1,7 +1,7 @@ { - "_index-Dnk_-Q5K.js": { - "file": "assets/index-Dnk_-Q5K.js", - "name": "index" + "__commonjsHelpers-yP-Wq8Va.js": { + "file": "assets/_commonjsHelpers-yP-Wq8Va.js", + "name": "_commonjsHelpers" }, "public/assets/images/background-dark.jpg": { "file": "assets/background-dark-BfkMu3-0.jpg", @@ -11,18 +11,6 @@ "file": "assets/background-light-CP7oKwVT.jpg", "src": "public/assets/images/background-light.jpg" }, - "public/assets/images/dusk/background_image.png": { - "file": "assets/background_image-BH7pVpv1.png", - "src": "public/assets/images/dusk/background_image.png" - }, - "public/assets/images/dusk/leaderboard_circle_image.png": { - "file": "assets/leaderboard_circle_image-BYkDVX69.png", - "src": "public/assets/images/dusk/leaderboard_circle_image.png" - }, - "public/assets/images/dusk/store_icon.png": { - "file": "assets/store_icon-B52tsSKO.png", - "src": "public/assets/images/dusk/store_icon.png" - }, "public/assets/images/icons/article.gif": { "file": "assets/article-CYhGsSKA.gif", "src": "public/assets/images/icons/article.gif" @@ -116,34 +104,34 @@ "src": "public/assets/images/profile/profile-bg.png" }, "resources/css/global.scss": { - "file": "assets/global-DIEP6767.css", + "file": "assets/global-DqmvGCFK.css", "src": "resources/css/global.scss", "isEntry": true }, "resources/js/global.js": { - "file": "assets/global-D4YXSAKi.js", + "file": "assets/global-_iMw75XS.js", "name": "global", "src": "resources/js/global.js", "isEntry": true, "imports": [ - "_index-Dnk_-Q5K.js" + "__commonjsHelpers-yP-Wq8Va.js" ] }, - "resources/themes/dusk/css/app.scss": { - "file": "assets/app-Dmg42Cvp.css", - "src": "resources/themes/dusk/css/app.scss", + "resources/themes/atom/css/app.scss": { + "file": "assets/app-Ce9wyuA_.css", + "src": "resources/themes/atom/css/app.scss", "isEntry": true }, - "resources/themes/dusk/js/app.js": { - "file": "assets/app-DupbooRM.js", + "resources/themes/atom/js/app.js": { + "file": "assets/app-RGrfBjJv.js", "name": "app", - "src": "resources/themes/dusk/js/app.js", + "src": "resources/themes/atom/js/app.js", "isEntry": true, "imports": [ - "_index-Dnk_-Q5K.js" + "__commonjsHelpers-yP-Wq8Va.js" ], "css": [ - "assets/app-CdQqP09h.css" + "assets/app-PleGVXCs.css" ] } } \ No newline at end of file diff --git a/Updated_Cms/resources/themes/atom/css/app.scss b/Updated_Cms/resources/themes/atom/css/app.scss index 3cf6c00fd9..b0de7d321e 100644 --- a/Updated_Cms/resources/themes/atom/css/app.scss +++ b/Updated_Cms/resources/themes/atom/css/app.scss @@ -1,4 +1,3 @@ -@reference; @tailwind base; @tailwind components; @tailwind utilities; diff --git a/Updated_Cms/resources/themes/atom/tailwind.config.cjs b/Updated_Cms/resources/themes/atom/tailwind.config.cjs index 50e12d2c1e..d77cb078c4 100644 --- a/Updated_Cms/resources/themes/atom/tailwind.config.cjs +++ b/Updated_Cms/resources/themes/atom/tailwind.config.cjs @@ -1,3 +1,4 @@ +/** @type {import('tailwindcss').Config} */ module.exports = { darkMode: "class", content: [ @@ -5,18 +6,20 @@ module.exports = { "./storage/framework/views/*.php", "./resources/**/*.blade.php", "./resources/**/*.js", + "./resources/**/*.vue", + "./app/**/*.php", + "./app/Filament/**/*.php", + "./app/Http/**/*.php", + "./app/Livewire/**/*.php", ], theme: { extend: { fontFamily: { - sans: ["Nunito", ...require("tailwindcss/defaultTheme").fontFamily.sans], + sans: ["Poppins", ...require("tailwindcss/defaultTheme").fontFamily.sans], }, }, }, - plugins: [ - require("@tailwindcss/forms"), - require("@tailwindcss/typography"), - ], + plugins: [], }; diff --git a/Updated_Cms/resources/themes/atom/vite.config.js b/Updated_Cms/resources/themes/atom/vite.config.js index 787d4285fd..aa491635c7 100644 --- a/Updated_Cms/resources/themes/atom/vite.config.js +++ b/Updated_Cms/resources/themes/atom/vite.config.js @@ -4,6 +4,7 @@ import path from "path"; import tailwindcss from "@tailwindcss/postcss"; import postcssImport from "postcss-import"; import autoprefixer from "autoprefixer"; +import nesting from "postcss-nesting"; export default defineConfig({ plugins: [ @@ -39,6 +40,7 @@ export default defineConfig({ tailwindcss({ config: path.resolve(__dirname, "tailwind.config.cjs"), }), + nesting(), autoprefixer(), ], },