Skip to content

Commit 0aceccc

Browse files
committed
Merge branch 'master' of github.com:sveltejs/svelte
2 parents 1dead6f + 5721ae3 commit 0aceccc

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

site/content/examples/00-introduction/02-styling/App.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<style>
22
p {
33
color: purple;
4-
font-family: 'Comic Sans MS';
4+
font-family: 'Comic Sans MS', cursive;
55
font-size: 2em;
66
}
77
</style>

site/content/examples/00-introduction/03-nested-components/App.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<style>
66
p {
77
color: purple;
8-
font-family: 'Comic Sans MS';
8+
font-family: 'Comic Sans MS', cursive;
99
font-size: 2em;
1010
}
1111
</style>

site/content/examples/04-events/05-dom-event-forwarding/FancyButton.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<style>
22
button {
3-
font-family: 'Comic Sans MS';
3+
font-family: 'Comic Sans MS', cursive;
44
font-size: 2em;
55
padding: 0.5em 1em;
66
color: royalblue;

site/content/examples/99-embeds/20181225-blog-svelte-css-in-js/styles.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const title = css`
1111
`;
1212

1313
export const comicSans = css`
14-
font-family: 'Comic Sans MS';
14+
font-family: 'Comic Sans MS', cursive;
1515
`;
1616

1717
export const box = css`

site/content/tutorial/01-introduction/04-styling/app-b/App.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<style>
22
p {
33
color: purple;
4-
font-family: 'Comic Sans MS';
4+
font-family: 'Comic Sans MS', cursive;
55
font-size: 2em;
66
}
77
</style>

site/content/tutorial/01-introduction/04-styling/text.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Just like in HTML, you can add a `<style>` tag to your component. Let's add some
88
<style>
99
p {
1010
color: purple;
11-
font-family: 'Comic Sans MS';
11+
font-family: 'Comic Sans MS', cursive;
1212
font-size: 2em;
1313
}
1414
</style>

site/content/tutorial/01-introduction/05-nested-components/app-a/App.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<style>
22
p {
33
color: purple;
4-
font-family: 'Comic Sans MS';
4+
font-family: 'Comic Sans MS', cursive;
55
font-size: 2em;
66
}
77
</style>

site/content/tutorial/01-introduction/05-nested-components/app-b/App.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<style>
66
p {
77
color: purple;
8-
font-family: 'Comic Sans MS';
8+
font-family: 'Comic Sans MS', cursive;
99
font-size: 2em;
1010
}
1111
</style>

site/content/tutorial/05-events/06-dom-event-forwarding/app-a/FancyButton.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<style>
22
button {
3-
font-family: 'Comic Sans MS';
3+
font-family: 'Comic Sans MS', cursive;
44
font-size: 2em;
55
padding: 0.5em 1em;
66
color: royalblue;

site/content/tutorial/05-events/06-dom-event-forwarding/app-b/FancyButton.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<style>
22
button {
3-
font-family: 'Comic Sans MS';
3+
font-family: 'Comic Sans MS', cursive;
44
font-size: 2em;
55
padding: 0.5em 1em;
66
color: royalblue;

0 commit comments

Comments
 (0)