Skip to content

Commit 5975006

Browse files
committed
more
1 parent 18ac439 commit 5975006

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

apps/svelte.dev/src/lib/icons/lightbulb.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

apps/svelte.dev/src/routes/tutorial/[...slug]/filetree/Folder.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
import * as context from './context.js';
55
import { get_depth } from '$lib/utils/path.js';
66
import Item from './Item.svelte';
7-
import folder_closed from '$lib/icons/folder.svg';
8-
import folder_open from '$lib/icons/folder-open.svg';
7+
import folder_closed from 'icons/folder';
8+
import folder_open from 'icons/folder-open';
99
import { solution } from '../state.svelte';
1010
import type { MenuItem } from '$lib/tutorial';
1111
import type { Directory, File as IFile, Item as IItem } from '@sveltejs/repl/workspace';
File renamed without changes.
File renamed without changes.

packages/icons/icons/lightbulb.svg

Lines changed: 1 addition & 0 deletions
Loading

packages/site-kit/src/lib/components/Text.svelte

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -417,10 +417,14 @@
417417
&.note,
418418
&:has(details.legacy) {
419419
&::before {
420-
content: none;
420+
content: '';
421+
display: block;
422+
width: 2em;
423+
height: 2em;
424+
top: 0.05em;
425+
background: var(--sk-fg-accent);
426+
mask: url(icons/lightbulb) no-repeat 0.5rem 0 / 2.6rem;
421427
}
422-
423-
background: url($lib/icons/lightbulb.svg) no-repeat 0.5rem 0 / 2.6rem;
424428
}
425429
426430
&:first-child {

0 commit comments

Comments
 (0)