30 lines
379 B
CSS
30 lines
379 B
CSS
.locationInputContainer {
|
|
width: 100%;
|
|
}
|
|
|
|
.inputRow {
|
|
display: flex;
|
|
gap: 1rem;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.inputWrapper {
|
|
flex: 1;
|
|
}
|
|
|
|
.locationButton {
|
|
white-space: nowrap;
|
|
margin-top: 1.5rem; /* Align with input field */
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.inputRow {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.locationButton {
|
|
margin-top: 0;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|