2 Commits
Author SHA1 Message Date
pheralb 3a9bf33e86 🔧 Add overscroll-none class to all layout
🧑‍🚀 Check / ⚡ Testing with Vitest (push) Has been cancelled
📦 Build / 🛠️ Build app (push) Has been cancelled
🧑‍🚀 Check / 📦 SVGs Size (push) Has been cancelled
🚀 Deploy / ☁️ API (push) Has been cancelled
2025-07-19 15:19:22 +01:00
pheralb a0acf46afa 🔧 Fix grid layout by adjusting the column count for extra large screens 2025-07-19 15:18:59 +01:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -31,7 +31,7 @@
</head>
<body
data-sveltekit-preload-data="hover"
class="min-h-screen scroll-smooth bg-white font-sans text-mini antialiased [text-rendering:optimizeLegibility;] selection:bg-neutral-200 dark:bg-dark dark:text-white dark:selection:bg-neutral-700"
class="min-h-screen scroll-smooth overscroll-none bg-white font-sans text-mini antialiased [text-rendering:optimizeLegibility;] selection:bg-neutral-200 dark:bg-dark dark:text-white dark:selection:bg-neutral-700"
>
<div>%sveltekit.body%</div>
</body>
+1 -1
View File
@@ -1,5 +1,5 @@
<div
class="mt-4 grid grid-cols-1 gap-4 sm:grid-cols-2 md:grid-cols-2 lg:grid-cols-4 xl:grid-cols-6"
class="mt-4 grid grid-cols-1 gap-4 sm:grid-cols-2 md:grid-cols-2 lg:grid-cols-4 xl:grid-cols-5"
>
<slot />
</div>