19 lines
283 B
CSS
19 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;
|
||
|
}
|