Remove outline from list-button.
This commit is contained in:
parent
b9a61ca64a
commit
b110a82859
1 changed files with 5 additions and 3 deletions
|
|
@ -128,9 +128,9 @@ export default {
|
|||
fieldOptions['initialValue'] = fieldOptions.potentialInitialValue;
|
||||
}
|
||||
|
||||
const {
|
||||
checked,
|
||||
handleChange,
|
||||
const {
|
||||
checked,
|
||||
handleChange,
|
||||
errors,
|
||||
} = useField(props.groupName, props.validationRules, fieldOptions);
|
||||
|
||||
|
|
@ -147,6 +147,7 @@ export default {
|
|||
<style lang="scss" scoped>
|
||||
.list-group {
|
||||
&.list-button {
|
||||
outline: none;
|
||||
input[type="radio"],
|
||||
input[type="checkbox"] {
|
||||
position: static; //override bootstrap
|
||||
|
|
@ -183,6 +184,7 @@ export default {
|
|||
border-radius: $border-radius-lg;
|
||||
border: 1px solid $gray-500;
|
||||
width: 100%;
|
||||
outline: none;
|
||||
|
||||
span {
|
||||
&.small {
|
||||
|
|
|
|||
Loading…
Reference in a new issue