Я имею в своей простой_форме:
<%= f.input :password,
required: true,
hint: ("#{@minimum_password_length} characters minimum" if @minimum_password_length),
input_html: { autocomplete: "new-password" } %>
Мне удалось получить метки формы белым цветом. Но мой намек остается серым. Его цвет был автоматически назначен Bootstrap:
/* line 52, node_modules/bootstrap/scss/utilities/_text.scss */
.text-muted {
/*! color: #6c757d !important; */
}
Как я могу сделать этот текст белым? Thanx