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

Commit

Permalink
fix(ui): Misaligned "limited" buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
oliversalzburg committed Jul 17, 2021
1 parent f6ea2b4 commit 19e6c9d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/userscript/source/ui/SettingsSectionUi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export abstract class SettingsSectionUi<TState> {
css: {
color: "grey",
display: "inline-block",
minWidth: "80px",
minWidth: "100px",
},
});

Expand Down Expand Up @@ -106,7 +106,7 @@ export abstract class SettingsSectionUi<TState> {
css: {
display: "inline-block",
marginBottom: delimiter ? "10px" : undefined,
minWidth: "80px",
minWidth: "100px",
},
});

Expand Down
2 changes: 1 addition & 1 deletion packages/userscript/source/ui/TimeControlSettingsUi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1144,7 +1144,7 @@ export class TimeControlSettingsUi extends SettingsSectionUi<TimeControlSettings
css: {
display: "inline-block",
marginBottom: delimiter ? "10px" : undefined,
minWidth: "80px",
minWidth: "100px",
},
});

Expand Down

0 comments on commit 19e6c9d

Please sign in to comment.