Skip to content
Merged

Dev #209

Show file tree
Hide file tree
Changes from 2 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
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