Skip to content

Commit

Permalink
Settings options should take up full width
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdjohnson committed Feb 22, 2024
1 parent 45ecae4 commit 3581e02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ModalSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const ModalSelector = observer(() => {

return (
<div className="dropdown">
<button tabIndex={0} role="button" className="btn btn-active" disabled={!selectedModel}>
<button tabIndex={0} role="button" className="btn btn-active w-full" disabled={!selectedModel}>
{selectedModel?.name || 'No models available'}
<ChevronDown />
</button>
Expand Down
2 changes: 1 addition & 1 deletion src/components/ThemeSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const ThemeSelector = observer(() => {
</div>

<div className="dropdown ">
<div tabIndex={0} role="button" className="btn btn-active">
<div tabIndex={0} role="button" className="btn btn-active w-full">
{themes[selectedTheme]}
<ChevronDown />
</div>
Expand Down

0 comments on commit 3581e02

Please sign in to comment.