Skip to content

Commit

Permalink
Ensure square cells in wallets grid
Browse files Browse the repository at this point in the history
  • Loading branch information
aryzing committed Apr 5, 2024
1 parent a8c4eab commit b6f397d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export function WalletProviderOption(props: Props) {
<div
style={{
"aspect-ratio": "1 / 1",
overflow: "hidden",
}}
>
<div
Expand Down
2 changes: 1 addition & 1 deletion src/lib/WalletProviderSelector/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ export function WalletProviderSelector() {
.wallets-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
align-content: start;
}
Expand Down

0 comments on commit b6f397d

Please sign in to comment.