first commit

This commit is contained in:
Nicola Spadari
2024-06-16 01:35:44 +02:00
commit 93877e5f1f
39 changed files with 16397 additions and 0 deletions

53
uno.config.ts Normal file
View File

@@ -0,0 +1,53 @@
import {
defineConfig,
presetAttributify,
presetIcons,
presetTagify,
presetTypography,
presetUno,
presetWebFonts,
transformerDirectives,
transformerVariantGroup
} from "unocss";
export default defineConfig({
shortcuts: [
["crate", "mx-auto max-w-7xl px-4 lg:px-8 sm:px-6"],
["flex-center", "flex justify-center items-center"]
],
presets: [
presetUno(),
presetTagify(),
presetAttributify(),
presetIcons({
extraProperties: {
display: "inline-block",
"vertical-align": "middle"
}
}),
presetTypography(),
presetWebFonts({
fonts: {
heading: {
name: "Montserrat",
weights: ["200", "400", "700"]
},
text: "Inter"
}
})
],
theme: {
breakpoints: {
sm: "576px",
md: "768px",
lg: "992px",
xl: "1200px",
xxl: "1400px",
uw: "2000px"
}
},
transformers: [
transformerDirectives(),
transformerVariantGroup()
]
});