By just looking at your screenshot, the chances are high that you might use some CSS transform property on the component which leads to a scaling "bug" as transform is more for svg graphics than layouting.
for example:
transform: translateY(max(-50%, -50vh));
Try to use flex layouting instead