feat(SW-240): add translations

This commit is contained in:
Fredrik Thorsson
2024-08-13 09:09:33 +02:00
parent 01bd7d2299
commit a3602b285b
9 changed files with 71 additions and 23 deletions

View File

@@ -1,21 +1,35 @@
.container {
display: none;
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 (min-width: 1367px) {
@media screen and (max-width: 1367px) {
.container {
display: grid;
padding: 0 var(--Spacing-x5);
gap: var(--Spacing-x3);
}
.form {
display: grid;
gap: var(--Spacing-x5);
grid-template-columns: repeat(6, auto);
align-items: center;
display: none;
}
}