diff --git a/data/style.css b/data/style.css index 5530373..68a013a 100644 --- a/data/style.css +++ b/data/style.css @@ -41,6 +41,7 @@ li svg { .svg-npm, .svg-codepen, .svg-youtube, +.svg-linktree, .svg-codersrank, .svg-google-plus, .svg-stackoverflow { @@ -79,3 +80,7 @@ li svg { .svg-codersrank { width: 2.5rem; } + +.svg-linktree { + width: 1.75rem; +} diff --git a/package.json b/package.json index bb6ecea..c148df4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "scriptex-socials", - "version": "1.5.0", + "version": "1.5.1", "description": "A native web component: links to various social media with SVG icons support", "scripts": { "svgo": "svgo -f static/images/svg", diff --git a/src/index.ts b/src/index.ts index d8c5227..e3270af 100644 --- a/src/index.ts +++ b/src/index.ts @@ -137,6 +137,7 @@ li svg { .svg-npm, .svg-codepen, .svg-youtube, +.svg-linktree, .svg-codersrank, .svg-google-plus, .svg-stackoverflow { @@ -175,6 +176,10 @@ li svg { .svg-codersrank { width: 2.5rem; } + +.svg-linktree { + width: 1.75rem; +} `; shadowRoot.appendChild(this.styleEl.cloneNode(true));