Skip to content

Commit bac6af1

Browse files
committed
fix lint
1 parent 1a6458c commit bac6af1

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

core/src/components/progress-bar/progress-bar.ionic.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@
3232
#{globals.current-color(base, 0.3)} 30%,
3333
transparent 30%
3434
);
35-
}
35+
}

core/src/components/textarea/textarea.ionic.scss

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
--highlight-color-focused: #{globals.current-color(base)};
2424
}
2525

26-
2726
// Ionic Textarea Sizes
2827
// --------------------------------------------------
2928

@@ -107,11 +106,12 @@
107106
.label-text-wrapper {
108107
@include globals.typography(globals.$ion-body-sm-medium);
109108

110-
color: globals.$ion-primitives-neutral-1000;
111-
112109
max-width: globals.$ion-scale-5000;
113110

114-
transition: color globals.$ion-transition-time-150 globals.$ion-transition-curve-expressive, transform globals.$ion-transition-time-150 globals.$ion-transition-curve-expressive
111+
transition: color globals.$ion-transition-time-150 globals.$ion-transition-curve-expressive,
112+
transform globals.$ion-transition-time-150 globals.$ion-transition-curve-expressive;
113+
114+
color: globals.$ion-primitives-neutral-1000;
115115
}
116116

117117
:host(.label-floating) .label-text-wrapper {
@@ -263,12 +263,12 @@ ion-icon {
263263
* Label is on the left of the textarea in LTR and
264264
* on the right in RTL. Label also has a fixed width.
265265
*/
266-
:host(.textarea-label-placement-fixed) .label-text {
266+
:host(.textarea-label-placement-fixed) .label-text {
267267
$text-wrapper-width: calc(globals.$ion-scale-2400 + globals.$ion-space-100);
268268

269269
flex: 0 0 $text-wrapper-width;
270270

271271
width: $text-wrapper-width;
272272
min-width: $text-wrapper-width;
273273
max-width: globals.$ion-scale-5000;
274-
}
274+
}

core/src/components/textarea/textarea.native.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,10 +196,10 @@
196196
* Label is on the left of the textarea in LTR and
197197
* on the right in RTL. Label also has a fixed width.
198198
*/
199-
:host(.textarea-label-placement-fixed) .label-text {
199+
:host(.textarea-label-placement-fixed) .label-text {
200200
flex: 0 0 100px;
201201

202202
width: 100px;
203203
min-width: 100px;
204204
max-width: 200px;
205-
}
205+
}

0 commit comments

Comments
 (0)