Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Adds flex-wrap to the property filter header #2888

Merged
merged 2 commits into from
Oct 17, 2024
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: 3 additions & 1 deletion src/property-filter/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ $operator-field-width: 120px;
.search-field {
display: flex;
align-items: flex-end;
flex-wrap: wrap;
gap: awsui.$space-xs awsui.$space-s;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. Row spacing: For the vertical spacing when items are wrapped.
  2. Column spacing: Replacing the margin-inline-end in line 179

}

.input-wrapper {
Expand Down Expand Up @@ -174,7 +176,7 @@ $operator-field-width: 120px;
}

.custom-control {
margin-inline-end: awsui.$space-s;
/* used in test-utils */
}

.input {
Expand Down
Loading