26 lines
392 B
CSS
26 lines
392 B
CSS
#main-content {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.card {
|
|
width: 40rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.new-post-modal textarea {
|
|
border: none;
|
|
resize: none;
|
|
outline: none;
|
|
font-family: sfpro;
|
|
font-size: 1.5rem;
|
|
margin: 1rem 0;
|
|
width: 100%;
|
|
height: 70%;
|
|
flex-grow: 1;
|
|
background-color: transparent;
|
|
color: var(--text);
|
|
}
|