diff --git a/assets/icons/frontmatter-short-dark.svg b/assets/icons/frontmatter-short-dark.svg new file mode 100644 index 00000000..be58baa5 --- /dev/null +++ b/assets/icons/frontmatter-short-dark.svg @@ -0,0 +1,12 @@ + + + + + + + diff --git a/assets/icons/frontmatter-short-light.svg b/assets/icons/frontmatter-short-light.svg new file mode 100644 index 00000000..874be8f6 --- /dev/null +++ b/assets/icons/frontmatter-short-light.svg @@ -0,0 +1,12 @@ + + + + + + + diff --git a/src/commands/Dashboard.ts b/src/commands/Dashboard.ts index 0da02837..dc71b5aa 100644 --- a/src/commands/Dashboard.ts +++ b/src/commands/Dashboard.ts @@ -97,8 +97,8 @@ export class Dashboard { Dashboard.isDisposed = false; Dashboard.webview.iconPath = { - dark: Uri.file(join(extensionUri.fsPath, 'assets/frontmatter-dark.svg')), - light: Uri.file(join(extensionUri.fsPath, 'assets/frontmatter.svg')) + dark: Uri.file(join(extensionUri.fsPath, 'assets/icons/frontmatter-short-dark.svg')), + light: Uri.file(join(extensionUri.fsPath, 'assets/icons/frontmatter-short-light.svg')) }; Dashboard.webview.webview.html = Dashboard.getWebviewContent(Dashboard.webview.webview, extensionUri);