[BUG] TabList component not displaying correctly without box-sizing: border-box

Hi everyone,

I’m currently using the TabList component from Vibe UI in my account-settings-view, and I noticed a visual bug related to the blue indicator that highlights the active tab.

On [Monday website], the following global style is applied:

body * {
box-sizing: border-box;
}

However, when this style is removed, the TabList indicator is not positioned correctly — it appears distanced from its supposed location, breaking the UI.

To temporarily fix the issue, I’m currently manually applying the box-sizing: border-box style to all elements in my project to replicate the behavior from the website.

Can this be fixed so that I can remove my patchy solution ?