Advanced Customization
Advanced customization options for the Wander Connect Embedded Wallet
Customize CSS Variables
Iframe
const wander = new WanderConnect({
iframe: {
cssVars: {
background: "#f5f5f5",
borderRadius: 12,
boxShadow: "0 8px 32px rgba(0, 0, 0, 0.12)",
},
},
});Button
const wander = new WanderConnect({
button: {
position: "top-right",
cssVars: {
// Light theme variables
light: {
background: "#ffffff",
color: "#000000",
borderRadius: 16,
boxShadow: "0 4px 12px rgba(0, 0, 0, 0.1)",
},
// Dark theme variables
dark: {
background: "#1a1a1a",
color: "#ffffff",
borderRadius: 16,
boxShadow: "0 4px 12px rgba(0, 0, 0, 0.3)",
},
},
},
});Inject custom CSS
Iframe
Button
Last updated
Was this helpful?