-
Notifications
You must be signed in to change notification settings - Fork 8
/
app.config.ts
40 lines (40 loc) · 900 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
export default defineAppConfig({
ui: {
primary: "green",
container: {
padding: "py-0 px-2 sm:px-5 lg:px-8",
},
modal: {
overlay: {
background: "bg-gray-200/75 dark:bg-gray-950/75 backdrop-blur-sm",
},
padding: "p-0",
rounded: "rounded-t-2xl rounded-b-none sm:rounded-lg",
width: "w-full max-w-md sm:max-w-md sm:w-full",
height: "h-max",
base: "relative text-left rtl:text-right flex flex-col p-4 sm:px-8",
},
formGroup: {
wrapper: "w-full mt-4",
size: {
xl: "text-sm",
},
},
button: {
padding: {
xl: "px-5 py-1.5",
},
rounded: "rounded-lg",
},
card: {
body: {
padding: "",
base: "",
},
base: "w-full max-w-xs overflow-hidden",
},
dropdown: {
background: "bg-white dark:bg-gray-900/90",
},
},
});