36 lines
457 B
CSS
36 lines
457 B
CSS
.container {
|
|
border-top: 1px solid var(--Base-Border-Subtle);
|
|
/* display: none; */
|
|
}
|
|
|
|
.form {
|
|
display: flex;
|
|
padding: var(--Spacing-x2) var(--Spacing-x5);
|
|
}
|
|
|
|
.input {
|
|
display: flex;
|
|
width: 100%;
|
|
max-width: 1250px;
|
|
}
|
|
|
|
.where {
|
|
width: 100%;
|
|
max-width: 280px;
|
|
}
|
|
|
|
.when {
|
|
width: 100%;
|
|
max-width: 240px;
|
|
}
|
|
|
|
/**
|
|
* Update the styles after mobile UX is ready
|
|
*/
|
|
|
|
@media screen and (max-width: 1367px) {
|
|
.container {
|
|
display: none;
|
|
}
|
|
}
|