mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-12 12:10:41 -05:00
Worked on: - Mod component templating - Added dark mode styles for homepage - Added benchmarking to the wolt import command - Added MySQL natural sort function Short todo: - Add updated time to mod component - Implement naturalsort function into homepage queries and measure performance difference - Migrate top navigation from old-build
26 lines
683 B
JavaScript
26 lines
683 B
JavaScript
import defaultTheme from "tailwindcss/defaultTheme";
|
|
import forms from "@tailwindcss/forms";
|
|
import typography from "@tailwindcss/typography";
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
darkMode: "selector",
|
|
|
|
content: [
|
|
"./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php",
|
|
"./vendor/laravel/jetstream/**/*.blade.php",
|
|
"./storage/framework/views/*.php",
|
|
"./resources/views/**/*.blade.php",
|
|
],
|
|
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ["Figtree", ...defaultTheme.fontFamily.sans],
|
|
},
|
|
},
|
|
},
|
|
|
|
plugins: [forms, typography],
|
|
};
|