Skip to content

Commit

Permalink
fix(border): update border styles after for new input version
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanjones243 committed May 3, 2024
1 parent 56e8255 commit e78de45
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions src/style.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) 2022 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
// See LICENSE in the project root for license information.

/* stylelint-disable max-nesting-depth */
/* stylelint-disable max-nesting-depth, declaration-no-important */

@import './../node_modules/@aurodesignsystem/design-tokens/dist/tokens/SCSSVariables';
@import './../node_modules/@aurodesignsystem/webcorestylesheets/src/utilityClasses/displayProperties';
Expand All @@ -26,12 +26,21 @@
}

&::part(input) {
/* stylelint-disable declaration-no-important */
border-width: 0 !important;
border-color: unset !important;
background-color: unset !important;
box-shadow: unset !important;
/* stylelint-enable declaration-no-important */
outline: unset !important;
}

&::part(wrapper) {
&:before {
border-bottom-color: transparent;
}

border-color: transparent;
background-color: unset;
box-shadow: none;
}
}

Expand Down

0 comments on commit e78de45

Please sign in to comment.