CoastalCommitsPastes/client/app/(posts)/new/components/title/title.module.css
Max Leiter 12d9eafcd9 lint
2022-11-17 22:36:53 -08:00

18 lines
283 B
CSS

.title {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
margin-bottom: var(--gap);
}
@media screen and (max-width: 650px) {
.title {
align-items: flex-start;
flex-direction: column;
}
}
.labelAndInput {
font-size: 1.2rem;
}