Skip to content
This repository has been archived by the owner on Oct 25, 2022. It is now read-only.

Commit

Permalink
fix(ui): Limited button too wide
Browse files Browse the repository at this point in the history
  • Loading branch information
oliversalzburg committed Oct 9, 2022
1 parent a6df0fb commit 5a08e02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/userscript/source/ui/components/LimitedButton.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class LimitedButton extends UiComponent {
handler: { onLimitedCheck: () => void; onLimitedUnCheck: () => void }
) {
super(host);
const element = $(`<div/>`);
const element = $(`<div/>`).addClass("ks-text-button");

const elementLabel = $("<label/>", {
text: host.engine.i18n("ui.limit"),
Expand Down

0 comments on commit 5a08e02

Please sign in to comment.