How to add a space to the suffix of a card

I always struggle with these kinds of questions.
In a card I have the number of days. In a suffix I would want to add a non braking space so I get some room between the number and the suffix “days”. So not “30days”, but “30 days”.
 ” did not work, just a simple white space before the days did not work. What to use for a space?

That’s a good point. The space is supposed to work.

For now, just drop this in the CSS of your page:

.t-card-suffix {
    padding-left: 10px;
}

@moe This is not solved until now.