Skip to content

Commit b5eb807

Browse files
committed
Svelte compile fixes
1 parent 00b104b commit b5eb807

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/routes/(v1)/nested-validation/TagForm.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@
141141
margin-right: 20px;
142142
}
143143
144-
input:not([type='checkbox']) {
144+
:global(input:not([type='checkbox'])) {
145145
width: 100px;
146146
}
147147

src/routes/(v1)/spa/without-zod/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
margin-right: 20px;
7575
}
7676
77-
input:not([type='checkbox']) {
77+
:global(input:not([type='checkbox'])) {
7878
width: 100px;
7979
}
8080

src/routes/(v1)/spa/zod-page-ts/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
margin-right: 20px;
6161
}
6262
63-
input:not([type='checkbox']) {
63+
:global(input:not([type='checkbox'])) {
6464
width: 100px;
6565
}
6666

src/routes/(v1)/spa/zod/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
margin-right: 20px;
7070
}
7171
72-
input:not([type='checkbox']) {
72+
:global(input:not([type='checkbox'])) {
7373
width: 100px;
7474
}
7575

src/routes/(v1)/tainted/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
}
8080
}
8181
82-
input:not([type='checkbox']) {
82+
:global(input:not([type='checkbox'])) {
8383
width: 100px;
8484
}
8585

src/routes/(v2)/v2/nested-validation-valibot/TagForm.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
margin-right: 20px;
129129
}
130130
131-
input:not([type='checkbox']) {
131+
:global(input:not([type='checkbox'])) {
132132
width: 100px;
133133
}
134134

0 commit comments

Comments
 (0)