diff --git a/CHANGELOG.md b/CHANGELOG.md index fb45d37b..f90fd779 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [3.0.1] - 2020-08-30 + +- [#79](https://github.com/estruyf/vscode-front-matter/issues/79): Fix scrollbar not visible on the welcome screen + ## [3.0.0] - 2020-08-27 - [#61](https://github.com/estruyf/vscode-front-matter/issues/61): List of recently modified files diff --git a/package-lock.json b/package-lock.json index 329358a7..08ddf2cf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "vscode-front-matter", - "version": "3.0.0", + "version": "3.0.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 1334e1fd..958dbbde 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "Front Matter", "description": "An essential Visual Studio Code extension when you want to manage the markdown pages of your static site like: Hugo, Jekyll, Hexo, NextJs, Gatsby, and many more...", "icon": "assets/frontmatter-teal-128x128.png", - "version": "3.0.0", + "version": "3.0.1", "preview": false, "publisher": "eliostruyf", "galleryBanner": { diff --git a/src/pagesView/components/WelcomeScreen.tsx b/src/pagesView/components/WelcomeScreen.tsx index 4aafc5a8..daead105 100644 --- a/src/pagesView/components/WelcomeScreen.tsx +++ b/src/pagesView/components/WelcomeScreen.tsx @@ -13,70 +13,72 @@ export interface IWelcomeScreenProps { export const WelcomeScreen: React.FunctionComponent = ({settings}: React.PropsWithChildren) => { return ( -
-
-
-
-
-

- Manage your static site with{' '} - Front Matter -

+
+
+
+
+
+
+

+ Manage your static site with{' '} + Front Matter +

-

- Thank you for taking the time to test out Front Matter! -

+

+ Thank you for taking the time to test out Front Matter! +

-

- We try to aim to make Front Matter as easy to use as possible, but if you have any questions, please don't hesitate to reach out to us on GitHub. -

+

+ We try to aim to make Front Matter as easy to use as possible, but if you have any questions, please don't hesitate to reach out to us on GitHub. +

- -
-
- -
-
-
- -
-

- Perform the next steps to get you started with the extension -

- -
-
- - -

- Once you completed both actions, the dashboard will show its full potential. You can also use the extension from the Front Matter side panel. There you will find the actions you can perform specifically for your pages. -

+
+ +
-

- We hope you enjoy Front Matter! -

-
-
+
+

+ Perform the next steps to get you started with the extension +

+ +
+
+ + +

+ Once you completed both actions, the dashboard will show its full potential. You can also use the extension from the Front Matter side panel. There you will find the actions you can perform specifically for your pages. +

+
+
+ +

+ We hope you enjoy Front Matter! +

+
+
+ ); }; \ No newline at end of file