Tile Position
Repositioning the Tile
For platforms implementing the Deko Wallet you have the option to show a floating tile with financial promotion information, positioned in the bottom right corner of the screen. This can be used to launch the finance calculator to browse available offers.

Sometimes the tile may obscure other elements on the page or doesn't complement your site navigations and needs to be moved. In order to modify the positioning of this tile, you can use the CSS part pseudo selector in the following manner:
::part(tile) {
/* As an example */
position: absolute;
left: 10px;
bottom: 10px;
}
Updated 8 months ago