Fix wrong padding for captcha label in registration form

fixes #8016

closes #8028
This commit is contained in:
flaburgan 2019-06-11 13:00:03 +02:00 committed by Benjamin Neff
parent 1227f34b2a
commit d8b3718a08
No known key found for this signature in database
GPG key ID: 971464C3F1A90194

View file

@ -38,16 +38,13 @@
width: 120px; width: 120px;
} }
.captcha-input { .form-control.captcha-input {
border-bottom: 1px solid $input-border; border-bottom: 1px solid $input-border;
border-bottom-left-radius: 5px; border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px; border-bottom-right-radius: 5px;
box-sizing: border-box; box-sizing: border-box;
font-size: 16px;
height: 40px;
line-height: $line-height-base; line-height: $line-height-base;
padding: 10px 10px 10px 130px; padding-left: 130px;
width: 100%;
} }
.terms > a { .terms > a {