Skip to content

Commit e32c182

Browse files
committed
style: formatting
1 parent 0837f32 commit e32c182

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

packages/core/src/components/discord-button/DiscordButton.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,15 @@ export class DiscordButton extends LitElement implements DiscordButtonProps {
150150
return html`<a class="secondary" href=${this.url} target="_blank" rel="noopener noreferrer">${content}</a>`;
151151
}
152152

153-
return html`<div class=${classMap({ [this.type]: true, disabled: this.disabled, hoverable: !this.disabled })}>${content}</div>`;
153+
return html`<div
154+
class=${classMap({
155+
[this.type]: true,
156+
disabled: this.disabled,
157+
hoverable: !this.disabled
158+
})}
159+
>
160+
${content}
161+
</div>`;
154162
}
155163
}
156164

0 commit comments

Comments
 (0)