The text in my cards isn’t doing a line break on spaces when it overflows to a new line. I’ve tried putting everything in a div and setting all: unset; to see if I can get this to work but nothing I’ve done seems to produce the correct rendering.
.card {
font-family: Times, serif;
font-size: 20px;
text-align: justify;
color: black;
background-color: white;
text-indent: 1em;
}
.replay-button {
margin: 0px;
}
.replay-button svg {
width: 25px;
height: 25px;
}
.card-tags {
font-style: italic;
font-size: 15px;
padding-top: 10px;
padding-left: 10px;
}
In the example it would be better to not have the words cut off when overflowing to a new line.
