Skip to content

Commit d976c9b

Browse files
committed
Fixes #488
1 parent 07c1b72 commit d976c9b

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

client/src/styles/mixins.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@
2929
display: grid;
3030
grid-template-columns: [first] 1fr [second] 1fr;
3131

32+
@media (max-width: $medium) {
33+
padding: 0 15px;
34+
grid-template-columns: [first] 1fr;
35+
}
36+
3237
.input-field, .select-field, .date-field, .error-indication, .sds--checkbox-container {
3338
grid-column-start: first;
3439
}

client/src/styles/vars.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
$background: #eaebf0;
22
$br: 6px;
33
// Screen
4-
$medium: 1280px;
4+
$medium: 824px;
55
$tablet-max: 824px;

welcome/src/styles/vars.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
$background: #eaebf0;
22
$br: 6px;
33
// Screen
4-
$medium: 1280px;
4+
$medium: 824px;
55
$tablet-max: 824px;

0 commit comments

Comments
 (0)