Add minimal styling
This commit is contained in:
parent
a6a7eeb690
commit
2a4a4c3caa
3 changed files with 48 additions and 12 deletions
22
frontend/tailwind.config.ts
Normal file
22
frontend/tailwind.config.ts
Normal file
|
@ -0,0 +1,22 @@
|
|||
import type { Config } from "tailwindcss"
|
||||
const { iconsPlugin, getIconCollections } = require("@egoist/tailwindcss-icons")
|
||||
|
||||
export default {
|
||||
content: ["./src/**/*.{html,js,svelte,ts}"],
|
||||
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
|
||||
plugins: [
|
||||
iconsPlugin({
|
||||
// Select the icon collections you want to use
|
||||
// You can also ignore this option to automatically discover all individual icon packages you have installed
|
||||
// If you install @iconify/json, you should explicitly specify the collections you want to use, like this:
|
||||
collections: getIconCollections(["lucide"]),
|
||||
// If you want to use all icons from @iconify/json, you can do this:
|
||||
// collections: getIconCollections("all"),
|
||||
// and the more recommended way is to use `dynamicIconsPlugin`, see below.
|
||||
}),
|
||||
],
|
||||
} satisfies Config
|
Loading…
Add table
Add a link
Reference in a new issue