Skip to content

Commit

Permalink
added class for cursor-default on sidebar menu button
Browse files Browse the repository at this point in the history
  • Loading branch information
“Michael authored and PoulavBhowmick03 committed Feb 28, 2025
1 parent c0fbf30 commit 4da524d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions client/components/playground/floatingWindow/FloatingSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ export default function FloatingSidebar({ addBlock }: FloatingSidebarProps) {
<span>
<StartIcon />
</span>
<div className="text-black">Trigger Actions</div>
<div className="text-black cursor-default">Trigger Actions</div>
</div>
<div onClick={(e) => {
e.stopPropagation();
Expand Down Expand Up @@ -307,7 +307,7 @@ export default function FloatingSidebar({ addBlock }: FloatingSidebarProps) {
<span>
<CoinIcon />
</span>
<div className="text-black ">Token Actions</div>
<div className="text-black cursor-default">Token Actions</div>
</div>
<div onClick={(e) => {
e.stopPropagation();
Expand Down Expand Up @@ -371,7 +371,7 @@ export default function FloatingSidebar({ addBlock }: FloatingSidebarProps) {
}} className="px-3 py-2 flex justify-between items-center">
<div className="flex gap-3">
<span><LiquidDropIcon /></span>
<div className="text-black">Liquidity Management</div>
<div className="text-black cursor-default">Liquidity Management</div>
</div>
<div onClick={(e) => {
e.stopPropagation();
Expand Down Expand Up @@ -406,7 +406,7 @@ export default function FloatingSidebar({ addBlock }: FloatingSidebarProps) {
}} className="px-3 py-2 flex justify-between items-center text-gray-400">
<div className="flex gap-3">
<span><BagIcon /></span>
<div className="text-black">Portfolio Management</div>
<div className="text-black cursor-default">Portfolio Management</div>
</div>
<div onClick={(e) => {
e.stopPropagation();
Expand Down Expand Up @@ -440,7 +440,7 @@ export default function FloatingSidebar({ addBlock }: FloatingSidebarProps) {
}} className="px-3 py-2 flex justify-between items-center">
<div className="flex gap-3">
<span><AnalyticsIcon /></span>
<div className="text-black">Insight & Analytics</div>
<div className="text-black cursor-default">Insight & Analytics</div>
</div>
<div onClick={(e) => {
e.stopPropagation();
Expand Down Expand Up @@ -483,7 +483,7 @@ export default function FloatingSidebar({ addBlock }: FloatingSidebarProps) {
}} className="px-3 py-2 flex justify-between items-center">
<div className="flex gap-3">
<span><GovernanceIcon /></span>
<div className="text-black">Governance</div>
<div className="text-black cursor-default">Governance</div>
</div>
<div onClick={(e) => {
e.stopPropagation();
Expand Down Expand Up @@ -517,7 +517,7 @@ export default function FloatingSidebar({ addBlock }: FloatingSidebarProps) {
}} className="px-3 py-2 flex justify-between items-center">
<div className="flex gap-3">
<span><CalenderIcon /></span>
<div className="text-black">Events & Automations</div>
<div className="text-black cursor-default">Events & Automations</div>
</div>
<div onClick={(e) => {
e.stopPropagation();
Expand Down

0 comments on commit 4da524d

Please sign in to comment.