Common modifications and additions: - ItsZariep/Tessera GitHub Wiki
These patches are intended to go in custom.css
Sticky right/left pane:
#right-container {
position: sticky;
top: 0;
align-self: flex-start;
}
Center any element in pane:
.search-box /*or your item name*/
{
margin: 0 auto;
}
Add an scroll to top button
html:
<a href="#main-container" class="scrolltotop"></a>