File tree Expand file tree Collapse file tree 5 files changed +1237
-1207
lines changed Expand file tree Collapse file tree 5 files changed +1237
-1207
lines changed Original file line number Diff line number Diff line change 1
- @tailwind base;
2
- @tailwind components;
3
- @tailwind utilities;
1
+ @import 'tailwindcss' ;
4
2
3
+ @config '../../tailwind.config.js' ;
4
+ @source '../../node_modules/shadcn-docs-nuxt' ;
5
+
6
+ @layer base {
7
+ * ,
8
+ ::after ,
9
+ ::before ,
10
+ ::backdrop ,
11
+ ::file-selector-button {
12
+ border-color : var (--color-gray-200 , currentcolor);
13
+ }
14
+ }
5
15
6
16
@layer base {
7
17
: root {
29
39
--destructive : 0 84.2% 60.2% ;
30
40
--destructive-foreground : 0 0% 98% ;
31
41
32
- --border : 240 5.9% 10 % ;
42
+ --border : 240 5.9% 90 % ;
33
43
--input : 240 5.9% 90% ;
34
44
--ring : 240 5.9% 10% ;
35
45
--radius : 0.5rem ;
66
76
}
67
77
}
68
78
79
+ @utility step {
80
+ counter-increment : step;
69
81
70
- @layer utilities {
71
- .step {
72
- counter-increment : step;
73
- }
74
-
75
- .step : before {
82
+ & : before {
76
83
@apply absolute w-9 h-9 bg-muted rounded-full font-mono font-medium text-center text-base inline-flex items-center justify-center -indent-px border-4 border-background;
77
84
@apply -ml-[50px ] -mt-1;
78
85
content : counter (step);
81
88
82
89
@layer base {
83
90
* {
84
- @apply border-border;
91
+ @apply border-border outline-ring/50 ;
85
92
}
86
93
87
94
body {
Original file line number Diff line number Diff line change @@ -5,6 +5,16 @@ export default defineNuxtConfig({
5
5
modules : [
6
6
'@nuxtjs/plausible' ,
7
7
] ,
8
+ i18n : {
9
+ defaultLocale : 'en' ,
10
+ locales : [
11
+ {
12
+ code : 'en' ,
13
+ name : 'English' ,
14
+ language : 'en-US' ,
15
+ } ,
16
+ ] ,
17
+ } ,
8
18
compatibilityDate : '2024-07-06' ,
9
19
plausible : {
10
20
domain : 'regexp.dev' ,
Original file line number Diff line number Diff line change 7
7
"dev" : " nuxt dev" ,
8
8
"generate" : " nuxt generate" ,
9
9
"preview" : " nuxt preview" ,
10
- "postinstall" : " nuxt prepare"
10
+ "postinstall" : " cd .. && pnpm build --stub && cd docs && pnpm nuxt prepare"
11
11
},
12
12
"dependencies" : {
13
13
"@nuxtjs/plausible" : " ^1.2.0" ,
14
- "nuxt" : " ^3.16.0 " ,
15
- "shadcn-docs-nuxt" : " ^0.8.21 " ,
16
- "vue" : " ^3.5.13 " ,
17
- "vue-router" : " ^4.5.0 "
14
+ "nuxt" : " ^3.17.4 " ,
15
+ "shadcn-docs-nuxt" : " ^1.0.1 " ,
16
+ "vue" : " ^3.5.16 " ,
17
+ "vue-router" : " ^4.5.1 "
18
18
}
19
19
}
You can’t perform that action at this time.
0 commit comments