Skip to content

Commit dae2251

Browse files
committed
fix lint
1 parent 41e0b3d commit dae2251

File tree

3 files changed

+34
-8
lines changed

3 files changed

+34
-8
lines changed

core/src/components/header/header.ionic.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ ion-header {
99
z-index: 10; // TODO(ROU-10853): replace this value with a layer token.
1010

1111
&.header-divider {
12-
border-bottom: globals.$token-border-size-025 globals.$token-border-style-solid globals.$token-primitives-neutral-300;
12+
border-bottom: globals.$token-border-size-025 globals.$token-border-style-solid
13+
globals.$token-primitives-neutral-300;
1314
}
1415
}
1516

core/src/components/list/list.ionic.scss

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,12 @@
3939
* The top of the list should not have a border radius because
4040
* that would include the header.
4141
*/
42-
@include globals.border-radius(initial, initial, globals.$token-border-radius-400, globals.$token-border-radius-400);
42+
@include globals.border-radius(
43+
initial,
44+
initial,
45+
globals.$token-border-radius-400,
46+
globals.$token-border-radius-400
47+
);
4348
}
4449

4550
// Target the first element in the list after the header
@@ -49,7 +54,12 @@
4954
* The bottom of the first element should not have a border radius
5055
* because that would not look connected to the rest.
5156
*/
52-
@include globals.border-radius(globals.$token-border-radius-400, globals.$token-border-radius-400, initial, initial);
57+
@include globals.border-radius(
58+
globals.$token-border-radius-400,
59+
globals.$token-border-radius-400,
60+
initial,
61+
initial
62+
);
5363
}
5464

5565
/* Soft */
@@ -59,7 +69,12 @@
5969
* The top of the list should not have a border radius because
6070
* that would include the header.
6171
*/
62-
@include globals.border-radius(initial, initial, globals.$token-border-radius-200, globals.$token-border-radius-200);
72+
@include globals.border-radius(
73+
initial,
74+
initial,
75+
globals.$token-border-radius-200,
76+
globals.$token-border-radius-200
77+
);
6378
}
6479

6580
// Target the first element in the list after the header
@@ -69,7 +84,12 @@
6984
* The bottom of the first element should not have a border radius
7085
* because that would not look connected to the rest.
7186
*/
72-
@include globals.border-radius(globals.$token-border-radius-200, globals.$token-border-radius-200, initial, initial);
87+
@include globals.border-radius(
88+
globals.$token-border-radius-200,
89+
globals.$token-border-radius-200,
90+
initial,
91+
initial
92+
);
7393
}
7494

7595
/* Rectangular */
@@ -130,6 +150,7 @@
130150
// --------------------------------------------------
131151

132152
.list-ionic-lines-inset .item-lines-default {
133-
--inner-border-width: #{globals.$token-border-size-0} #{globals.$token-border-size-0} #{globals.$token-border-size-025} #{globals.$token-border-size-0};
153+
--inner-border-width: #{globals.$token-border-size-0} #{globals.$token-border-size-0} #{globals.$token-border-size-025}
154+
#{globals.$token-border-size-0};
134155
--border-width: #{globals.$token-border-size-0};
135156
}

core/src/components/searchbar/searchbar.ionic.scss

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,9 @@
219219
* the size of the trailing icon (clear),
220220
* and the gap between the icon and the input.
221221
*/
222-
@include globals.padding-horizontal(calc(globals.$token-space-300 + globals.$token-scale-400 + globals.$token-space-200));
222+
@include globals.padding-horizontal(
223+
calc(globals.$token-space-300 + globals.$token-scale-400 + globals.$token-space-200)
224+
);
223225
}
224226

225227
/* Small with Trailing Icons */
@@ -300,7 +302,9 @@
300302
* the size of the trailing icon (clear),
301303
* and the gap between the icon and the input.
302304
*/
303-
@include globals.padding-horizontal(calc(globals.$token-space-400 + globals.$token-scale-400 + globals.$token-space-200));
305+
@include globals.padding-horizontal(
306+
calc(globals.$token-space-400 + globals.$token-scale-400 + globals.$token-space-200)
307+
);
304308
}
305309

306310
/* Medium with Trailing Icons */

0 commit comments

Comments
 (0)