Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhancement: Account Center Updates #1723

Merged
merged 18 commits into from
May 18, 2023
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web3-onboard/core",
"version": "2.18.1-alpha.2",
"version": "2.18.1-alpha.3",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since this is changing the default way core displays I am thinking we should make this a minor version bump

"description": "Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.",
"keywords": [
"Ethereum",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const APP_INITIAL_STATE: AppState = {
chains: [],
accountCenter: {
enabled: true,
position: 'topRight',
position: 'bottomRight',
expanded: false,
minimal: configuration.device.type === 'mobile'
},
Expand Down
1 change: 0 additions & 1 deletion packages/core/src/views/Index.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,6 @@
.container {
padding: 16px;
font-family: var(--onboard-font-family-normal, var(--font-family-normal));
width: 100%;
pointer-events: none;
touch-action: none;
}
Expand Down
Loading