Design & Customization
Custom CSS
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
π Stablecoin Accounts are live! Learn more
const cssOverrides = `
.wallet-list-item__tile:hover > img {
animation: rotate 1s forwards;
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
`
<DynamicContextProvider
settings={{
// ...
cssOverrides: <link rel='stylesheet' href='/external-styles.css' />, // pass JSX element to be included in the shadow DOM
// ...
}}
>
<HomePage />
</DynamicContextProvider>
<DynamicContextProvider
settings={{
// ...
shadowDOMEnabled: false,
// ...
}}
>
<Home />
</DynamicContextProvider>
Was this page helpful?