Question
Text not wrapping in card
- June 1, 2020
- 1 reply
- 1406 views
I'm having trouble with the CSS of a card. On smaller devices the text doesn't wrap and gets clipped by the boundary of the card. This also happens with an image I have on the card.
CSS of card and textbox below:
.instructionCard {
font-family: Montserrat, Century Gothic, sans-serif, -apple-system;
text-transform: uppercase;
font-size: calc(18px + (32 - 18) * ((100vw - 300px) / (1600 - 300)));
color: white;
background-color: rgba(18,18,17,0.3);
border-top-color: red;
border-top: 3px;
border-top-style: solid;
overflow: scroll;
}
.twxTextArea textarea {
font-family: Montserrat, Century Gothic, sans-serif, -apple-system;
background-color: transparent !important;
display: flex;
flex-wrap: wrap;
font-size: calc(14px + (26 - 14) * ((100vw - 300px) / (1600 - 300)));
line-height: calc(1.3em + (1.5 - 1.2) * ((100vw - 300px)/(1600 - 300)));
}
