Skip to content
Merged
Show file tree
Hide file tree
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
resolved bugs
  • Loading branch information
snehalsankhe committed Jul 19, 2024
commit 145ef152c1be80cda104c3d8027a1562c1b61a34
12 changes: 10 additions & 2 deletions ui/src/components/DestinationStack/DestinationStack.scss
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,10 @@
}
.Select__menu-list .Select__option--is-focused {
background-color: $color-brand-white-base;
color: $color-black-2121;
&:hover {
background: $color-base-white-10;
color: $color-brand-primary-base;
}

}
.Select .Select__control .Select__value-container input, .Select__single-value input[text]{
font-size: 16px !important;
Expand All @@ -127,6 +126,15 @@
}
.Select__option {
position: relative;
color: $color-font-base;
&.Select__option--is-selected {
&:hover {
color: $color-brand-primary-base;
&:focus {
color: $color-brand-primary-base;
}
}
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion ui/src/pages/Migration/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ const Migration = () => {
} else{
setIsLoading(false);
Notification({
notificationContent: { text: 'Please select a stack to complete all steps' },
notificationContent: { text: 'Please select a stack to proceed further' },
type: 'warning'
});
}
Expand Down