From cb112828835a3bf7ea1b9c531e0052d905357b3f Mon Sep 17 00:00:00 2001 From: max-programming Date: Sun, 4 Oct 2020 07:58:12 +0530 Subject: [PATCH] Added Icons to labels --- index.html | 28 ++++++++++++++-------------- js/script.js | 9 ++++++--- 2 files changed, 20 insertions(+), 17 deletions(-) diff --git a/index.html b/index.html index 4ce84c4..7aec020 100644 --- a/index.html +++ b/index.html @@ -35,7 +35,7 @@

GitHub profile readme generator

-

Super simple GitHub profile readme generator made with vue js, that allows you to create beautiful readme files that you can copy/paste in your profile.

+

Super simple GitHub profile readme generator made with Vue.js, that allows you to create beautiful readme files that you can copy/paste in your profile.


What is GitHub profile readme? Check out repository to learn more.

@@ -108,43 +108,43 @@

Social information

- +
- +
- +
- +
- +
- +
- +
- +
- +
- +
- +
- +
- +

Others

diff --git a/js/script.js b/js/script.js index 78d7140..46ec72f 100644 --- a/js/script.js +++ b/js/script.js @@ -1,11 +1,14 @@ Vue.use(VueMarkdown); Vue.component('custom-input', { - props: ['value', 'title', 'placeholder'], + props: ['value', 'title', 'placeholder', 'brand'], template: `
- - + +
` })