Commit 3aacae20 authored by Phil Hughes's avatar Phil Hughes

Fixed positioning of milestone dropdown in create board dropdown

Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/32837
parent bf993f70
......@@ -72,8 +72,6 @@ import extraMilestones from '../mixins/extra_milestones';
const milestoneDropdown = this.$refs.milestoneDropdown;
const rect = e.target.getBoundingClientRect();
milestoneDropdown.style.left = `${rect.left}px`;
milestoneDropdown.style.top = `${rect.bottom}px`;
milestoneDropdown.style.width = `${rect.width}px`;
});
}
......
......@@ -669,6 +669,9 @@
.dropdown-menu {
position: fixed;
left: 10px;
top: 175px;
min-width: 200px;
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment