Currently, I have a text input that is centered horizontally when typing text. However, I want it to be positioned at the top instead. See the following code:
height: 143px;
width: 782px;
font-family: 'Roboto Mono';
background: #FFFFFF;
border: 1px solid #000000;
border-radius: 4px;
@media screen and (max-width: 950px) {
width: 100%;
}
This is how the current setup looks like:
My goal is to have the typed text displayed at the top of the input.