It seems like position:sticky does not work. Or I’m doing something wrong. But when I preview the artboard, the element does not stay sticky on top.
if you are using nextjs replace the body and html rule in the global.css with this
html,
body {
max-width: 100vw;
overflow-x: clip;
}
1 Like
Do you know if this is a limitation of Plasmic?
its how nextjs css boilerplate got generated and conflicts with how Plasmic implement sticky nothing to worry about
Good suggestion!