File tree 7 files changed +1353
-1938
lines changed
7 files changed +1353
-1938
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"extends": ["stylelint-config-recommended", "stylelint-config-standard-scss"],
3
3
"plugins": ["stylelint-scss", "stylelint-no-unsupported-browser-features"],
4
- "rules": {
5
- "at-rule-no-unknown": null,
6
- "function-no-unknown": null,
7
- "media-query-no-invalid": null,
8
- "color-function-notation": null,
9
- "scss/at-rule-no-unknown": true,
10
- "at-rule-empty-line-before": null,
11
- "declaration-empty-line-before": null
12
- }
4
+ "rules": {}
13
5
}
Original file line number Diff line number Diff line change 79
79
"@rollup/plugin-alias" : " 5.0.1" ,
80
80
"@testing-library/jest-dom" : " 6.1.4" ,
81
81
"@testing-library/react" : " 14.0.0" ,
82
- "@types/jest" : " 29.5.5 " ,
82
+ "@types/jest" : " 29.5.6 " ,
83
83
"@types/loadable__component" : " 5.13.5" ,
84
- "@types/node" : " 18.18.5 " ,
84
+ "@types/node" : " 20.8.6 " ,
85
85
"@types/postcss-flexbugs-fixes" : " 5.0.1" ,
86
86
"@types/react" : " 18.2.28" ,
87
87
"@types/react-dom" : " 18.2.13" ,
108
108
"postcss-flexbugs-fixes" : " 5.0.2" ,
109
109
"redux-mock-store" : " 1.5.4" ,
110
110
"sass" : " 1.69.4" ,
111
- "stylelint" : " 15.10.3 " ,
111
+ "stylelint" : " 15.11.0 " ,
112
112
"stylelint-config-recommended" : " 13.0.0" ,
113
113
"stylelint-config-standard-scss" : " 11.0.0" ,
114
114
"stylelint-no-unsupported-browser-features" : " 7.0.0" ,
Original file line number Diff line number Diff line change 6
6
7
7
@mixin flex-row ($wrap : wrap , $align : stretch , $justify : space-between ) {
8
8
@include flex ($align , $justify );
9
+
9
10
flex-flow : row $wrap ;
10
11
}
11
12
12
13
@mixin flex-column ($wrap : nowrap , $align : stretch , $justify : space-between ) {
13
14
@include flex ($align , $justify );
15
+
14
16
flex-flow : column $wrap ;
15
17
}
16
18
21
23
}
22
24
23
25
@mixin desktop-only {
24
- @media (min-width : $tablet-landscape + 1 ) {
26
+ @media (calc ( $tablet-landscape + 1) <= width ) {
25
27
@content ;
26
28
}
27
29
}
33
35
}
34
36
35
37
@mixin tablet-landscape-only {
36
- @media (min-width : $tablet-portrait + 1 ) and ( max- width: $tablet-landscape ) {
38
+ @media (calc ( $tablet-portrait + 1) <= width <= $tablet-landscape ) {
37
39
@content ;
38
40
}
39
41
}
45
47
}
46
48
47
49
@mixin tablet-portrait-only {
48
- @media (min-width : $mobile + 1 ) and ( max- width: $tablet-portrait ) {
50
+ @media (calc ( $mobile + 1) <= width <= $tablet-portrait ) {
49
51
@content ;
50
52
}
51
53
}
Original file line number Diff line number Diff line change 5
5
.c-nav {
6
6
ul {
7
7
@include flex-row (nowrap , center , flex-start );
8
+
8
9
padding : 0 ;
9
10
margin : 0 ;
10
11
list-style : none outside none ;
Original file line number Diff line number Diff line change 130
130
textarea {
131
131
height : 200px ;
132
132
resize : none ;
133
- overflow-x : hidden ;
134
- overflow-y : auto ;
133
+ overflow : hidden auto ;
135
134
-webkit-overflow-scrolling : touch ;
136
135
}
137
136
160
159
font-size : 0.75rem ;
161
160
line-height : 1.5 ;
162
161
margin-bottom : 0.25rem ;
162
+
163
163
@include flex-row (nowrap , center , space-between );
164
164
}
165
165
}
Original file line number Diff line number Diff line change 4
4
color : $color-error ;
5
5
text-align : center ;
6
6
height : 100% ;
7
+
7
8
@include flex-row (wrap , center , center );
8
9
}
You can’t perform that action at this time.
0 commit comments