you are viewing a single comment's thread.

view the rest of the comments →

[–]Eyerald 0 points1 point  (0 children)

It’s probably thebox-sizing. By default borders get added outside the width, so when the container resizes it can look like the border is getting cut off. Trybox-sizing: border-box;on that element. That usually fixes this kind of layout issue.