We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41da5db commit 3b31ba0Copy full SHA for 3b31ba0
src/ui/pages/WalletSelect/WalletList.tsx
@@ -245,7 +245,8 @@ export function WalletList({
245
* If CSS anchor positioning is supported, we use it to avoid
246
* nesting buttons, which is invalid per html spec, but still works ¯\_(ツ)_/¯
247
*/
248
- const supportsCssAnchor = CSS.supports('anchor-name: --name');
+ // TODO: enable check when Chrome bug with CSS Anchors is fixed
249
+ const supportsCssAnchor = false; // CSS.supports('anchor-name: --name');
250
for (const group of walletGroups) {
251
for (const wallet of group.walletContainer.wallets) {
252
const key = `${group.id}-${wallet.address}`;
0 commit comments