Skip to content

Commit

Permalink
Merge pull request #28 from 51ngul4r1ty/issue/000493/project-picker-s…
Browse files Browse the repository at this point in the history
…tyling-fix

Issue/000493/project picker styling fix
  • Loading branch information
51ngul4r1ty authored Dec 12, 2024
2 parents 73ccc23 + 369599c commit 95e87bb
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18.19.0
v18.20.5
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
.projectPickerMenu {
width: 13rem;
}

.projectPickerMenuContainer {
position: absolute;
bottom: 0;
}
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,11 @@ export const InnerProjectPickerMenu: React.FC<InnerProjectPickerMenuProps> = (pr
});
const className = buildClassName(css.projectPickerMenu, props.className);
return (
<ItemMenuPanel className={className} caretPosition={ItemMenuPanelCaretPosition.BottomLeft} loading={props.loading}>
{buttons}
</ItemMenuPanel>
<div className={css.projectPickerMenuContainer}>
<ItemMenuPanel className={className} caretPosition={ItemMenuPanelCaretPosition.BottomLeft} loading={props.loading}>
{buttons}
</ItemMenuPanel>
</div>
);
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@
.projectPickerMenu {
position: relative;
left: -2.15rem;
bottom: 5.9rem;
bottom: 2rem;
}

0 comments on commit 95e87bb

Please sign in to comment.