Skip to content

Commit

Permalink
neutral displayAsSelector active border-b
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalmi committed Dec 5, 2023
1 parent 79c3cfd commit eb54ea9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/app/src/Element/Feed/DisplayAsSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const DisplayAsSelector = ({ activeSelection, onSelect, show }: DisplaySe
return (
<div className="flex mb-px md:mb-1">
<div
className={`border-highlight cursor-pointer flex justify-center flex-1 p-3 ${
className={`cursor-pointer flex justify-center flex-1 p-3 ${
activeSelection === "list" ? "border-b border-1" : "hover:bg-nearly-bg-color text-secondary"
}`}
onClick={() => myOnSelect("list")}>
Expand All @@ -32,7 +32,7 @@ export const DisplayAsSelector = ({ activeSelection, onSelect, show }: DisplaySe
</span>
</div>
<div
className={`border-highlight cursor-pointer flex justify-center flex-1 p-3 ${
className={`cursor-pointer flex justify-center flex-1 p-3 ${
activeSelection === "grid" ? "border-b border-1" : "hover:bg-nearly-bg-color text-secondary"
}`}
onClick={() => myOnSelect("grid")}>
Expand Down

0 comments on commit eb54ea9

Please sign in to comment.