-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.ts
41 lines (41 loc) · 868 Bytes
/
app.config.ts
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
export default defineAppConfig({
ui: {
primary: "cyan",
gray: "slate",
button: {
default: {
size: "sm",
color: "primary",
},
},
formGroup: {
default: {
size: "sm"
}
},
container: {
default: {
padding: "p-0 sm:p-0 lg:p-0"
}
},
card: {
default: {
divide: "divide-y divide-gray-100"
}
},
notification: {
default: {
shadow: "shadow"
}
},
divider: {
default: {
border: {
size: {
horizontal: "border-t-2"
}
}
}
}
},
})