Skip to content

Commit 71b142a

Browse files
authored
fix css imports in readme example
1 parent 8c2278e commit 71b142a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Use in a component
1414

1515
<script>
1616
import { SubmitForm } from '@restspace/svelte-schema-form';
17-
import '@restspace/svelte-schema-form/css/layout.css';
18-
import '@restspace/svelte-schema-form/css/basic-skin.css';
17+
import '@restspace/svelte-schema-form/css/layout.scss';
18+
import '@restspace/svelte-schema-form/css/basic-skin.scss';
1919

2020
let schema = {
2121
type: "object",
@@ -213,4 +213,4 @@ You'd then make use of this custom editor component in a schema like this:
213213
}
214214
}
215215

216-
The key in the `components` map is matched to, in priority order, the `editor` property, then the `format` property, then the `type` property. This means you can also substitute editors for field groupings, which is more tricky. Work from the Array.svelte and Object.svelte default editor components in the repo.
216+
The key in the `components` map is matched to, in priority order, the `editor` property, then the `format` property, then the `type` property. This means you can also substitute editors for field groupings, which is more tricky. Work from the Array.svelte and Object.svelte default editor components in the repo.

0 commit comments

Comments
 (0)