forked from dokos-io/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.ts
More file actions
44 lines (44 loc) · 766 Bytes
/
app.config.ts
File metadata and controls
44 lines (44 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
export default defineAppConfig({
ui: {
primary: 'sky',
gray: 'slate',
button: {
rounded: 'rounded-full',
default: {
size: 'md'
}
},
input: {
default: {
size: 'md'
}
},
cardGroup: {
wrapper: 'grid grid-cols-3'
},
card: {
rounded: 'rounded-xl'
},
footer: {
top: {
wrapper: 'border-t border-gray-200 dark:border-gray-800',
container: 'py-8 lg:py-16'
},
bottom: {
wrapper: 'border-t border-gray-200 dark:border-gray-800'
}
},
page: {
hero: {
wrapper: 'lg:py-24'
}
},
header: {
popover: {
links: {
wrapper: 'grid grid-cols-3'
}
}
},
},
})