Skip to content

Commit

Permalink
spacing for icons
Browse files Browse the repository at this point in the history
  • Loading branch information
LianaHus committed Mar 16, 2021
1 parent 2f4e347 commit d6b4329
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "remix-tabs",
"version": "1.1.1",
"version": "1.1.2",
"description": "",
"main": "./dist/bundle.js",
"author": "lianahus",
Expand Down
4 changes: 2 additions & 2 deletions src/tab/tab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ export class RemixTab extends LitElement {

render(): TemplateResult {
const icon = this.tab.icon ?
html`<img class="mr-1 iconImage" src='${this.tab.icon}' />` :
html`<i class="mt-1 mr-1 text-dark ${this.tab.iconClass}"></i>`;
html`<img class="my-1 mr-1 iconImage" src='${this.tab.icon}' />` :
html`<i class="my-1 mr-1 text-dark ${this.tab.iconClass}"></i>`;
return html`
<style>
.title {
Expand Down

0 comments on commit d6b4329

Please sign in to comment.