Skip to content

Commit f9ef2d3

Browse files
authored
Merge pull request svelte-jp#47 from tomoam/update-up-to-20231029
2023/10/29 迄の更新に追従
2 parents 70a1bcd + f71a153 commit f9ef2d3

File tree

2 files changed

+4
-1
lines changed
  • content/tutorial/01-svelte/01-introduction/03-dynamic-attributes
  • src

2 files changed

+4
-1
lines changed

content/tutorial/01-svelte/01-introduction/03-dynamic-attributes/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ Webアプリケーションは、例えば視覚や動作に障害のある方
3232

3333
```svelte
3434
/// file: App.svelte
35-
<img +++{src}+++ alt="A man dances." />
35+
<img +++{src}+++ alt="{name} dances." />
3636
```

src/app.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ button:focus-visible {
2323
pre.language-diff code {
2424
color: rgba(0, 0, 0, 0.4);
2525
}
26+
.dark pre.language-diff code {
27+
color: rgba(255, 255, 255, 0.4);
28+
}
2629

2730
.language-diff .inserted,
2831
.language-diff .deleted {

0 commit comments

Comments
 (0)