WAIT: Builder preview does not reflect actual frontend changes

Win 11, Chrome, Firefox.

Examples:

Using transition on pagination elements doesn’t work in preview mode (unless you add !important), but frontend is displayed correctly.

%root% {
  a {
    transition: var(--transition);
  }
}

Making the anchor tag stretch over the whole container does not work in the preview, but works on the fronted.

  position: relative;
  
  a::before {
    content: "";
    position: absolute;
    inset: 0;
  }
  
}```

Hi Daniel,
Thanks for your report!

Are you really talking about the pagination element? :thinking:

CleanShot 2026-02-17 at 13.08.23

Best regards,
timmse

Yes, the transition (in pagination) did not work in the preview unless I used !important. However, it did work on the frontend without using !important. The same goes to the ‘link stretch’ css - the button does not react to hovering the parent in the preview, but does react on the frontend.

Here’s an example: https://drive.google.com/file/d/1Ou6K_dD25UFhxruBxuvrrerQ9DN_ZdSv/view?usp=sharing