-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.ts
78 lines (77 loc) · 1.45 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
export default defineAppConfig({
nuxtIcon: {},
ui: {
primary: 'amber',
button: {
rounded: 'rounded-none',
},
input: {
rounded: 'rounded-none',
},
textarea: {
rounded: 'rounded-none',
},
select: {
rounded: 'rounded-none',
},
selectMenu: {
rounded: 'rounded-none',
},
buttonGroup: {
rounded: 'rounded-none',
},
badge: {
rounded: 'rounded-none',
},
card: {
rounded: 'rounded-none',
body: {
padding: 'p-2 sm:p-2',
},
},
dropdown: {
rounded: 'rounded-none',
item: {
rounded: 'rounded-none',
},
},
checkbox: {
rounded: 'rounded-none',
},
tabs: {
list: {
base: 'border-b-2',
background: 'bg-transparent',
rounded: 'rounded-none',
marker: {
rounded: 'rounded-none',
background: 'bg-transparent',
shadow: 'shadow-none',
base: 'border-b-2 border-primary',
},
},
},
table: {
th: {
padding: 'py-1 px-2',
},
td: {
padding: 'py-1 px-2',
},
},
pagination: {
rounded: 'first:rounded-none last:rounded-none',
},
carousel: {
rounded: 'rounded-none',
},
horizontalNavigation: {
container: 'list-none',
},
popover: {
wrapper: 'h-0',
rounded: 'rounded-none',
trigger: 'w-0 h-0 overflow-hidden',
}
},
})