Skip to content

Commit

Permalink
Fw 5398 5395 5397 various css fixes (#674)
Browse files Browse the repository at this point in the history
* added pointer cursor to media library selector

* changed x hover from charcoal to white
  • Loading branch information
Cara-Barter authored Nov 8, 2024
1 parent 49c5bf0 commit 01c14b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Audiobar/AudiobarPresentation.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function AudiobarPresentation({
type="button"
id="CloseAudiobar"
aria-label="Close Audiobar"
className="float-right m-2 text-charcoal-500 hover:text-charcoal-900 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-charcoal-300"
className="float-right m-2 text-charcoal-500 hover:text-white focus:outline-none focus:ring-2 focus:ring-inset focus:ring-charcoal-300"
onClick={() => close()}
>
{getIcon('Close', 'fill-current h-7 w-7')}
Expand Down
2 changes: 1 addition & 1 deletion src/components/SelectorAudio/SelectorAudioPresentation.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function SelectorAudioPresentation({
return (
<tr
key={audioFile?.id}
className="rounded-lg relative"
className="rounded-lg relative cursor-pointer"
onClick={() => mediaSelectHandler(audioFile?.id)}
>
<td data-testid="DashboardMediaItemsRow">
Expand Down

0 comments on commit 01c14b9

Please sign in to comment.