Skip to content

Commit 99a4daf

Browse files
authored
chore(fix): fix on hover border radius for first child button (#123)
fix on hover border radius
1 parent a9e8e93 commit 99a4daf

File tree

1 file changed

+10
-1
lines changed
  • packages/ord-connect/src/components/SelectWalletModal

1 file changed

+10
-1
lines changed

packages/ord-connect/src/components/SelectWalletModal/style.css

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,11 +191,20 @@
191191
padding: 16px 16px 8px 16px;
192192
border: 0px;
193193
margin-bottom: 0px;
194-
border-radius: 20px 20px 20px 20px;
194+
border-radius: 20px;
195195
/* repace with below border-radius once unisat is supported on mobile devices */
196196
/* border-radius: 20px 20px 0px 0px; */
197197
}
198198

199+
@media screen and (min-width: 1080px) {
200+
.ord-connect-wallet-modal .wallet-option-button:first-child {
201+
padding: 16px 16px 8px 16px;
202+
border: 0px;
203+
margin-bottom: 0px;
204+
border-radius: 20px 20px 0px 0px;
205+
}
206+
}
207+
199208
.ord-connect-wallet-modal .wallet-option-button:nth-of-type(2) {
200209
border: 0px;
201210
margin-bottom: 0px;

0 commit comments

Comments
 (0)