Skip to content

Commit

Permalink
chore: add hover classes on connector buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
rolznz committed Aug 31, 2023
1 parent dee3a22 commit 9a8dfeb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/connectors/ConnectorElement.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {ConnectorType} from '../../types/ConnectorType';
import {color} from '../css/colors';
import {ConnectorConfig} from '../../types/ConnectorConfig';
import store from '../../state/store';
import {hoverClasses} from '../css/hoverClasses';

export abstract class ConnectorElement extends withTwind()(
BitcoinConnectElement
Expand All @@ -29,7 +30,7 @@ export abstract class ConnectorElement extends withTwind()(

override render() {
return html`<div
class="flex flex-col justify-between items-center w-32 h-24 cursor-pointer"
class="flex flex-col justify-between items-center w-32 h-24 cursor-pointer ${hoverClasses}"
@click=${this._onClick}
>
<div
Expand Down

0 comments on commit 9a8dfeb

Please sign in to comment.