Skip to content

Commit 0d273c4

Browse files
committed
fix(input): use darker color for helper text
1 parent efd3e0f commit 0d273c4

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

core/src/components/input/input.md.solid.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@
3232
--border-color: var(--highlight-color);
3333
}
3434

35+
/**
36+
* The bottom content should never have
37+
* a border with the solid style.
38+
*/
3539
:host(.input-fill-solid) .input-bottom {
3640
border-top: none;
3741
}

core/src/components/input/input.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,8 @@
306306
border-top: var(--border-width) var(--border-style) var(--border-color);
307307

308308
font-size: dynamic-font(12px);
309+
310+
white-space: normal;
309311
}
310312

311313
/**
@@ -340,7 +342,7 @@
340342
.input-bottom .helper-text {
341343
display: block;
342344

343-
color: #{$text-color-step-450};
345+
color: $text-color-step-300;
344346
}
345347

346348
:host(.ion-touched.ion-invalid) .input-bottom .error-text {

0 commit comments

Comments
 (0)