frontend_nyla/src/components/UiComponents/LocationInput/LocationInput.module.css
2025-12-01 17:01:25 +01:00

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%;
}
}