Skip to content

Commit

Permalink
Move reset.css and update imports
Browse files Browse the repository at this point in the history
The reset.css file has been moved from the lib directory to the sample directory. The import statements in highlighted.svelte and layout.svelte files have been updated to reflect this change.
  • Loading branch information
lemo-nade-room committed Jun 9, 2024
1 parent 63e7d2e commit ec3ffa8
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ This software is released under the MIT License. For more details, please refer

Portions of this code are protected under copyright and are used under the terms of the BSD 3-Clause License:

[highlight.js](https://github.com/highlightjs/highlight.js/blob/main/LICENSE)
[highlight.js](https://github.com/highlightjs/highlight.js/blob/main/LICENSE)
1 change: 0 additions & 1 deletion src/lib/ui/Highlighted.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
-->

<script lang="ts">
import '../reset.css';
import hljs, { type HighlightResult } from 'highlight.js';
import { onMount } from 'svelte';
import { Language } from '$lib/scripts/language.js';
Expand Down
2 changes: 1 addition & 1 deletion src/routes/+layout.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts">
import '$lib/reset.css';
import '$sample/reset.css';
import Header from '$sample/header/Header.svelte';
</script>

Expand Down
File renamed without changes.

0 comments on commit ec3ffa8

Please sign in to comment.