Issue with wrapping button

Hey everyone, I am running into an issue where a button keeps getting wrapped on mobile devices:

Screenshot_107

I have already tried the following CSS:

root {
white-space: nowrap;
}

Which sadly, did not work.

Maybe someone has a workaround for that, big thanks in advance!

Hey Tobias,

I guess the text and the button sit in a flex container. So make sure to set flex-shrink to 0 for the button.

Best,

André

Worked perfectly! Thanks.