Skip to content

Commit

Permalink
Improve rounding of the preset buttons. Fixes #6555
Browse files Browse the repository at this point in the history
  • Loading branch information
Omkar76 committed Nov 8, 2023
1 parent 05df8c0 commit 6cf6e04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Components/Facility/Consultations/Feed.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -459,9 +459,9 @@ export const Feed: React.FC<IFeedProps> = ({ consultationId, facilityId }) => {
getCameraStatus({});
}}
className={classNames(
"block border border-gray-500 px-4 py-2",
"block border border-gray-500 px-4 py-2 first:rounded-l last:rounded-r",
currentPreset === preset
? "rounded border-primary-500 bg-primary-500 text-white"
? "border-primary-500 bg-primary-500 text-white"
: "bg-transparent"
)}
>
Expand Down

0 comments on commit 6cf6e04

Please sign in to comment.