Skip to content

Commit

Permalink
Replaces some border radius variables with the right ones.
Browse files Browse the repository at this point in the history
  • Loading branch information
daveyholler committed Aug 6, 2020
1 parent 417b03c commit 2374150
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@
&.euiFormControlLayout--compressed {
&.euiFormControlLayout--group {
.euiFormControlLayout__childrenWrapper:first-child {
border-radius: $euiBorderRadiusSmall 0 0 $euiBorderRadiusSmall;
border-radius: $euiFormControlCompressedBorderRadius 0 0 $euiFormControlCompressedBorderRadius;
}
}

.euiFormControlLayout__childrenWrapper:only-child {
border-radius: $euiBorderRadiusSmall;
border-radius: $euiFormControlCompressedBorderRadius;
overflow: hidden;
}

.euiFormControlLayout__prepend +
.euiFormControlLayout__childrenWrapper {
&:last-child {
border-radius: 0 $euiBorderRadiusSmall $euiBorderRadiusSmall 0;
border-radius: 0 $euiFormControlCompressedBorderRadius $euiFormControlCompressedBorderRadius 0;
}
}
}
Expand Down

0 comments on commit 2374150

Please sign in to comment.