Input fields that contain checkboxes now have automatic width. (CSS)

This commit is contained in:
Sarah Conway
2019-03-23 09:29:28 -07:00
committed by Jonathan S. Katz
parent 59e60fadb6
commit cdf42ad2e8

View File

@ -1132,6 +1132,12 @@ input {
input[type=checkbox] {
vertical-align: middle;
margin-left: 5px;
width: auto;
}
input[type=checkbox]:focus {
outline: none;
box-shadow: none;
}
.custom-select {