File tree Expand file tree Collapse file tree 2 files changed +34
-20
lines changed Expand file tree Collapse file tree 2 files changed +34
-20
lines changed Original file line number Diff line number Diff line change 2
2
text-align : center ;
3
3
display : flex ;
4
4
flex-direction : column ;
5
- align-items : center ;
5
+ align-items : center ;
6
6
justify-content : center ;
7
7
flex : 1 ;
8
+
9
+ @media (max-width : 550px ) {
10
+ text-align : left ;
11
+ justify-content : start ;
12
+ }
8
13
}
9
14
10
15
.form-container--align-left {
11
- text-align : left ;
16
+ text-align : left ;
12
17
}
13
18
14
19
.form-container--align-top {
15
- height : unset ;
20
+ height : unset ;
16
21
}
17
22
18
23
.form-container__header {
19
24
width : 100% ;
20
25
padding : #{15 / $base-font-size } rem #{34 / $base-font-size } rem;
21
26
display : flex ;
22
- justify-content : space-between ;
27
+ justify-content : space-between ;
23
28
}
24
29
25
30
.form-container__content {
31
36
}
32
37
33
38
.form-container--align-left .form-container__content {
34
- align-items : left ;
39
+ align-items : left ;
35
40
}
36
41
37
42
.form-container__title {
38
43
font-weight : normal ;
39
44
@include themify () {
40
- color : getThemifyVariable (' form-title-color' )
41
- }
45
+ color : getThemifyVariable (" form-title-color" );
46
+ }
47
+
48
+ @media (max-width : 770px ) {
49
+ display : none ;
50
+ }
42
51
}
43
52
44
53
.form-container__context {
45
- @include themify () {
46
- color : getThemifyVariable (' secondary-text-color' )
47
- }
54
+ @include themify () {
55
+ color : getThemifyVariable (" secondary-text-color" );
56
+ }
48
57
}
49
58
50
59
.form-container__divider {
51
- padding : #{20 / $base-font-size } rem 0 ;
60
+ padding : #{20 / $base-font-size } rem 0 ;
52
61
}
53
62
54
63
.form-container__logo-button {
55
- @include icon ();
64
+ @include icon ();
56
65
}
57
66
58
67
.form-container__exit-button {
Original file line number Diff line number Diff line change 5
5
font-size : #{12 / $base-font-size } rem;
6
6
text-align : left ;
7
7
@include themify () {
8
- color : getThemifyVariable (' error-color' );
8
+ color : getThemifyVariable (" error-color" );
9
9
}
10
10
}
11
11
27
27
margin-top : #{16 / $base-font-size } rem;
28
28
font-size : #{12 / $base-font-size } rem;
29
29
@include themify () {
30
- color : getThemifyVariable (' form-navigation-options-color' );
30
+ color : getThemifyVariable (" form-navigation-options-color" );
31
+ }
32
+
33
+ @media (max-width : 550px ) {
34
+ text-align : center ;
35
+ margin : #{12 / $base-font-size } rem;
31
36
}
32
37
}
33
38
34
- .form__legend {
39
+ .form__legend {
35
40
font-size : #{21 / $base-font-size } rem;
36
41
font-weight : bold ;
37
42
}
42
47
margin-bottom : #{7 / $base-font-size } rem;
43
48
display : block ;
44
49
@include themify () {
45
- color : getThemifyVariable (' form-secondary-title-color' );
50
+ color : getThemifyVariable (" form-secondary-title-color" );
46
51
}
47
52
}
48
53
56
61
height : #{40 / $base-font-size } rem;
57
62
font-size : #{16 / $base-font-size } rem;
58
63
@include themify () {
59
- color : getThemifyVariable (' form-input-text-color' );
60
- background-color : getThemifyVariable (' input-background-color' );
64
+ color : getThemifyVariable (" form-input-text-color" );
65
+ background-color : getThemifyVariable (" input-background-color" );
61
66
}
62
67
}
63
68
67
72
68
73
.form__input ::placeholder {
69
74
@include themify () {
70
- color : getThemifyVariable (' form-input-placeholder-text-color' );
75
+ color : getThemifyVariable (" form-input-placeholder-text-color" );
71
76
}
72
77
}
73
78
78
83
79
84
.form__status {
80
85
@include themify () {
81
- color : getThemifyVariable (' form-navigation-options-color' );
86
+ color : getThemifyVariable (" form-navigation-options-color" );
82
87
}
83
88
}
84
89
You can’t perform that action at this time.
0 commit comments