diff --git a/.storybook/preview.js b/.storybook/preview.js
index 00d424030..31d82685f 100644
--- a/.storybook/preview.js
+++ b/.storybook/preview.js
@@ -17,7 +17,7 @@ ansiHTML.setColors({
chalk.enabled = true;
chalk.level = 3;
-const style = {
+const codeStyle = {
display: 'inline-block',
margin: 0,
padding: '1rem',
@@ -28,6 +28,14 @@ const style = {
color: '#c0c4cd',
};
+const htmlStyle = {
+ fontFamily: "'Nunito Sans', sans-serif",
+ fontSize: 14,
+ lineHeight: '1',
+ color: '#5C6870',
+ margin: 20,
+};
+
export const parameters = {
layout: 'fullscreen',
};
@@ -36,11 +44,11 @@ export const decorators = [
(storyFn, { kind }) => {
if (kind.startsWith('CLI/')) {
document.body.style.backgroundColor = '#16242c';
- return
;
+ return
;
}
if (kind.startsWith('HTML/')) {
- document.body.style.backgroundColor = '#ffffff';
- return
;
+ document.body.style.backgroundColor = '#F6F9FC';
+ return ;
}
document.body.style.backgroundColor = 'paleturquoise';
return storyFn();
diff --git a/node-src/lib/uploadMetadataFiles.ts b/node-src/lib/uploadMetadataFiles.ts
index defbe0489..9224a5e91 100644
--- a/node-src/lib/uploadMetadataFiles.ts
+++ b/node-src/lib/uploadMetadataFiles.ts
@@ -4,7 +4,7 @@ import { withFile } from 'tmp-promise';
import { STORYBOOK_BUILD_LOG_FILE } from '../tasks/build';
import { Context, FileDesc } from '../types';
-import getMetadataHtml from '../ui/content/metadata.html';
+import getMetadataHtml from '../ui/html/metadata.html';
import { findStorybookConfigFile } from './getStorybookMetadata';
import { CHROMATIC_LOG_FILE } from './log';
import { uploadAsIndividualFiles } from './upload';
diff --git a/node-src/ui/content/metadata.html.stories.ts b/node-src/ui/html/metadata.html.stories.ts
similarity index 100%
rename from node-src/ui/content/metadata.html.stories.ts
rename to node-src/ui/html/metadata.html.stories.ts
diff --git a/node-src/ui/content/metadata.html.ts b/node-src/ui/html/metadata.html.ts
similarity index 99%
rename from node-src/ui/content/metadata.html.ts
rename to node-src/ui/html/metadata.html.ts
index 4965ffcaa..e33e7eecd 100644
--- a/node-src/ui/content/metadata.html.ts
+++ b/node-src/ui/html/metadata.html.ts
@@ -11,7 +11,6 @@ export default ({ announcedBuild, build }: Context, files: FileDesc[]) => `Build ${announcedBuild.number} metadata files