generated from savokiss/nuxt-ui-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.config.ts
38 lines (38 loc) · 815 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
export default defineAppConfig({
title: 'OpenAI KeyTools',
description: 'Manage your openai api keys with ease.',
githubLink: process.env.NUXT_GITHUB_LINK,
ui: {
primary: 'emerald',
container: {
constrained: 'max-w-2xl'
},
card: {
header: {
base: 'flex flex-wrap items-center justify-between'
},
body: {
base: 'space-y-4'
}
},
dropdown: {
width: 'w-full',
popper: {
strategy: 'absolute'
}
},
table: {
th: {
base: 'text-center rtl:text-right bg-indigo-500',
padding: 'px-1 py-2',
color: 'text-white',
font: 'font-semibold',
size: 'text-sm'
},
td: {
base: 'whitespace-nowrap text-center',
padding: 'px-1 py-2'
},
}
}
})