diff --git a/src/app/components/vertical-icons-component.js b/src/app/components/vertical-icons-component.js index 931c136de6..0c6c63978b 100644 --- a/src/app/components/vertical-icons-component.js +++ b/src/app/components/vertical-icons-component.js @@ -27,6 +27,7 @@ class VerticalIconComponent { addIcon (mod) { let kind = mod.kind || 'other' this.icons[mod.name] = yo`
{ this._iconClick(mod.name) }} title=${mod.name} >${mod.name}
` + this.iconKind[kind].appendChild(this.icons[mod.name]) } @@ -132,6 +133,11 @@ const css = csjs` height: 28px; padding: 4px; } + .icon svg { + width: 28px; + height: 28px; + padding: 4px; + } .icon.active { border: solid 3px hsla(229, 75%, 87%, 1); border-radius: 8px;