wireguard-dashboard-admin/unocss.config.js

27 lines
964 B
JavaScript
Raw Normal View History

2022-07-08 22:35:55 +08:00
import { defineConfig, presetAttributify, presetUno } from 'unocss'
2022-06-11 16:55:36 +08:00
export default defineConfig({
2022-07-14 16:39:24 +08:00
exclude: ['node_modules', '.git', '.github', '.husky', '.vscode', 'build', 'dist', 'mock', 'public', './stats.html'],
presets: [presetUno(), presetAttributify()],
2022-06-18 22:00:58 +08:00
shortcuts: [
2022-07-14 16:39:24 +08:00
['wh-full', 'w-full h-full'],
2022-06-18 22:00:58 +08:00
['f-c-c', 'flex justify-center items-center'],
2022-07-14 16:39:24 +08:00
['flex-col', 'flex flex-col'],
['absolute-lt', 'absolute left-0 top-0'],
['absolute-lb', 'absolute left-0 bottom-0'],
['absolute-rt', 'absolute right-0 top-0'],
['absolute-rb', 'absolute right-0 bottom-0'],
['absolute-center', 'absolute-lt f-c-c wh-full'],
2022-06-19 15:02:58 +08:00
['text-ellipsis', 'truncate'],
2022-06-18 22:00:58 +08:00
],
rules: [
2022-06-19 19:41:49 +08:00
[/^bc-(.+)$/, ([, color]) => ({ 'border-color': `#${color}` })],
2022-06-19 15:02:58 +08:00
['card-shadow', { 'box-shadow': '0 1px 2px -2px #00000029, 0 3px 6px #0000001f, 0 5px 12px 4px #00000017' }],
2022-06-18 22:00:58 +08:00
],
2022-07-14 16:39:24 +08:00
theme: {
colors: {
primary: 'var(--primaryColor)',
},
},
2022-06-11 16:55:36 +08:00
})