From 63a110ea22452aabacc5fd815c8f236847f51a9e Mon Sep 17 00:00:00 2001 From: tempcode Date: Wed, 22 Nov 2023 17:20:49 +0100 Subject: [PATCH] fix: textarea border bottom --- src/scss/custom/_just-validate.scss | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/scss/custom/_just-validate.scss b/src/scss/custom/_just-validate.scss index 81838cf874..e4bedf3b9a 100644 --- a/src/scss/custom/_just-validate.scss +++ b/src/scss/custom/_just-validate.scss @@ -20,14 +20,19 @@ padding-right: calc(1.5em + 0.75rem) !important; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2300cc85' viewBox='0 0 192 512'%3E%3Cpath d='M435.848 83.466L172.804 346.51l-96.652-96.652c-4.686-4.686-12.284-4.686-16.971 0l-28.284 28.284c-4.686 4.686-4.686 12.284 0 16.971l133.421 133.421c4.686 4.686 12.284 4.686 16.971 0l299.813-299.813c4.686-4.686 4.686-12.284 0-16.971l-28.284-28.284c-4.686-4.686-12.284-4.686-16.97 0z'/%3E%3C/svg%3E"); } + textarea { - background-position: top 0.3em right 0.3em !important; - background-size: 37px 30% !important; + &.form-control { + background-position: top 0.3em right 0.3em !important; + background-size: 37px 30% !important; + } &.is-invalid { - border-bottom: 1px solid #d9364f; + border-bottom-style: solid; + border-bottom-width: 1px; } &.just-validate-success-field { - border-bottom: 1px solid #008758; + border-bottom-style: solid; + border-bottom-width: 1px; } } input[type='date'] {