Skip to content

Commit

Permalink
add border to case sensitive and regex toggles
Browse files Browse the repository at this point in the history
marhaupe committed Oct 13, 2024
1 parent 7b54fbe commit 345844a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/frontend/src/components/FilterInput.tsx
Original file line number Diff line number Diff line change
@@ -48,7 +48,7 @@ export function FilterInput({
aria-label="Use Regular Expression"
pressed={regex}
onPressedChange={onRegexChange}
className="font-mono text-xs"
className="font-mono text-xs border border-r-0 rounded-none"
>
.*
</Toggle>
@@ -65,7 +65,7 @@ export function FilterInput({
aria-label="Match Case"
pressed={caseSensitive}
onPressedChange={onCaseSensitiveChange}
className="font-mono text-xs"
className="font-mono text-xs border rounded-none rounded-tr-md rounded-br-md"
>
Aa
</Toggle>

0 comments on commit 345844a

Please sign in to comment.