diff --git a/src/components/DatawrapperChart/DatawrapperChart.svelte b/src/components/DatawrapperChart/DatawrapperChart.svelte
index 12bd9bcb..faaa22f6 100644
--- a/src/components/DatawrapperChart/DatawrapperChart.svelte
+++ b/src/components/DatawrapperChart/DatawrapperChart.svelte
@@ -51,7 +51,7 @@
* of the text well. Can't ever be wider than `width`.
* @type {string}
*/
- export let textWidth: ContainerWidth | null = null;
+ export let textWidth: ContainerWidth | null = 'normal';
let frameElement;
diff --git a/src/components/GraphicBlock/GraphicBlock.svelte b/src/components/GraphicBlock/GraphicBlock.svelte
index 5520ddd3..89490fa2 100644
--- a/src/components/GraphicBlock/GraphicBlock.svelte
+++ b/src/components/GraphicBlock/GraphicBlock.svelte
@@ -41,7 +41,7 @@
* of the text well. Can't ever be wider than `width`.
* @type {string}
*/
- export let textWidth: ContainerWidth | null = null;
+ export let textWidth: ContainerWidth | null = 'normal';
/**
* Title of the graphic
@@ -81,55 +81,53 @@
ariaLabel="{ariaLabel}"
class="graphic fmy-5 {cls}"
>
-
- {#if $$slots.title}
-
-
-
-
-
-
- {:else if title}
-
-
- {title}
- {#if description}
- {@html marked(description)}
- {/if}
-
-
- {/if}
-
-
-
-
- {#if $$slots.aria || ariaDescription}
-
- {#if $$slots.aria}
-
-
- {:else}
- {@html marked(ariaDescription)}
+ {#if $$slots.title}
+
+
+
+
+
+
+ {:else if title}
+
+
+ {title}
+ {#if description}
+ {@html marked(description)}
{/if}
-
- {/if}
- {#if $$slots.notes}
-
-
-
-
-
-
- {:else if notes}
-
-
-
-
-
- {/if}
-
+
+
+ {/if}
+
+
+
+
+ {#if $$slots.aria || ariaDescription}
+
+ {#if $$slots.aria}
+
+
+ {:else}
+ {@html marked(ariaDescription)}
+ {/if}
+
+ {/if}
+ {#if $$slots.notes}
+
+
+
+
+
+
+ {:else if notes}
+
+
+
+
+
+ {/if}
@@ -140,6 +138,7 @@
// Dek
p {
@include body-note;
+ @include font-light;
}
// Caption and Sources
aside {
diff --git a/src/components/Headline/Headline.svelte b/src/components/Headline/Headline.svelte
index e6ee43d9..5f7bf7f7 100644
--- a/src/components/Headline/Headline.svelte
+++ b/src/components/Headline/Headline.svelte
@@ -73,7 +73,7 @@
}
-
+