Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-deramond committed Oct 26, 2023
1 parent 7e4c48b commit 6cbcbd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scss/mixins/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
padding-right: $input-height-inner;
background-image: escape-svg($icon);
background-repeat: no-repeat;
background-position: right subtract($input-height-inner-quarter, 2px) top subtract($input-height-inner-quarter, 2px);
background-position: right subtract($input-height-inner-quarter, $input-border-width) top subtract($input-height-inner-quarter, $input-border-width);
background-size: $input-height-inner-half $input-height-inner-half;
}
}
Expand All @@ -49,7 +49,7 @@

.form-control-color {
@include form-validation-state-selector($state) {
width: calc(#{$form-color-width} + #{$input-height-inner-half} + #{$input-height-inner-quarter} - 2px); // stylelint-disable-line function-disallowed-list
width: calc(#{$form-color-width} + #{$input-height-inner-half} + #{$input-height-inner-quarter} - #{$input-border-width}); // stylelint-disable-line function-disallowed-list
}
}
}
Expand Down

0 comments on commit 6cbcbd8

Please sign in to comment.