diff --git a/.changeset/orange-poems-report.md b/.changeset/orange-poems-report.md deleted file mode 100644 index e93a7e8209..0000000000 --- a/.changeset/orange-poems-report.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@backstage/plugin-catalog': patch ---- - -Adjusted the sticky scrolling of the new entity layout so that the info columns scrolls to the bottom more eagerly. diff --git a/.changeset/revert-eager-info-scroll.md b/.changeset/revert-eager-info-scroll.md new file mode 100644 index 0000000000..1868fd87c6 --- /dev/null +++ b/.changeset/revert-eager-info-scroll.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-catalog': patch +--- + +Revert PR #30573: Changed the sticky scrolling of the new entity layout back to stick to the top instead of bottom. \ No newline at end of file diff --git a/plugins/catalog/src/alpha/DefaultEntityContentLayout.tsx b/plugins/catalog/src/alpha/DefaultEntityContentLayout.tsx index a2be72bcdb..21276f424a 100644 --- a/plugins/catalog/src/alpha/DefaultEntityContentLayout.tsx +++ b/plugins/catalog/src/alpha/DefaultEntityContentLayout.tsx @@ -79,8 +79,7 @@ const useStyles = makeStyles< infoArea: { gridArea: 'info', position: 'sticky', - bottom: theme.spacing(3), - alignSelf: 'end', + top: theme.spacing(3), marginLeft: theme.spacing(3), }, contentArea: {