CoastalCommitsPastes/client/app/(posts)/new/components/title/title.module.css

19 lines
283 B
CSS
Raw Normal View History

2022-11-18 01:36:53 -05:00
.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;
}