Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/internal/styles/forms/mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
box-shadow: $box-shadow;
}

@mixin container-focus($border-radius: awsui.$border-radius-container, $type: outset) {
@mixin container-focus($border-radius: awsui.$border-radius-container) {
// This mixin is different to `focus-highlight` because it needs to supports overflowing
// content. Using a pseudo element does not take the width or height of the overflowing
// children.
Expand All @@ -41,7 +41,7 @@
border-start-end-radius: $border-radius;
border-end-start-radius: $border-radius;
border-end-end-radius: $border-radius;
box-shadow: $type foundation.$box-shadow-focused;
box-shadow: foundation.$box-shadow-focused;
}

@mixin focus-highlight(
Expand Down
Loading