creativetimofficial / blk-design-system

232 stars 137 forks source link

Textarea only have bottom border #2

Open trcrt opened 5 years ago

trcrt commented 5 years ago

Textarea borders are not visible (here, for example). Managed to fix it with textarea.form-control { border: 1px solid #2b3553; } but obviously broke active input border and rounded corners.

rarestoma commented 5 years ago

Hello,

Thank you for the interest in our products. If you want a good working bordered textarea please add the following css code:

textarea.form-control{ border: 1px solid #2b3553; border-radius: .4285rem; }

textarea.form-control:focus{ border-color: #e14eca !important; }

Please let me know if i can help you with anything else.

All the best, Rares

coleman-benjamin commented 5 years ago

In case anyone ever needs this,

textarea.form-control{
    border: 1px solid #2b3553;
    border-radius: .4285rem;
}

textarea.form-control:focus{
    border: 1px solid #e14eca ;
    border-radius: .4285rem;
}

:focus was still being overwritten, so this fixes that.