Skip to content

Commit

Permalink
Svelte compile fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ciscoheat committed Nov 15, 2024
1 parent 00b104b commit b5eb807
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/routes/(v1)/nested-validation/TagForm.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
margin-right: 20px;
}
input:not([type='checkbox']) {
:global(input:not([type='checkbox'])) {
width: 100px;
}
Expand Down
2 changes: 1 addition & 1 deletion src/routes/(v1)/spa/without-zod/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
margin-right: 20px;
}
input:not([type='checkbox']) {
:global(input:not([type='checkbox'])) {
width: 100px;
}
Expand Down
2 changes: 1 addition & 1 deletion src/routes/(v1)/spa/zod-page-ts/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
margin-right: 20px;
}
input:not([type='checkbox']) {
:global(input:not([type='checkbox'])) {
width: 100px;
}
Expand Down
2 changes: 1 addition & 1 deletion src/routes/(v1)/spa/zod/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
margin-right: 20px;
}
input:not([type='checkbox']) {
:global(input:not([type='checkbox'])) {
width: 100px;
}
Expand Down
2 changes: 1 addition & 1 deletion src/routes/(v1)/tainted/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
}
}
input:not([type='checkbox']) {
:global(input:not([type='checkbox'])) {
width: 100px;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
margin-right: 20px;
}
input:not([type='checkbox']) {
:global(input:not([type='checkbox'])) {
width: 100px;
}
Expand Down

0 comments on commit b5eb807

Please # to comment.