ITZX-Clubs-Home-Web/uno.config.ts

25 lines
475 B
TypeScript
Raw Permalink Normal View History

2024-12-18 20:14:45 +08:00
import { defineConfig } from 'unocss';
2024-12-18 22:47:58 +08:00
import { transformerDirectives } from 'unocss';
2024-12-18 20:14:45 +08:00
export default defineConfig({
rules: [
[
'absolute-self-center',
{
position: 'absolute',
top: '50%',
left: '50%',
transform: 'translate(-50%, -50%)',
},
],
],
2024-12-30 06:41:34 +08:00
theme: {
breakpoints: {
sm: '576px',
md: '768px',
lg: '1024px',
xl: '1280px',
},
},
2024-12-18 22:47:58 +08:00
transformers: [transformerDirectives()],
2024-12-18 20:14:45 +08:00
});