{ hasVideos ? (
diff --git a/projects/packages/videopress/src/client/admin/components/admin-page/styles.module.scss b/projects/packages/videopress/src/client/admin/components/admin-page/styles.module.scss
index 867964766d79..6d4b41a0c98b 100644
--- a/projects/packages/videopress/src/client/admin/components/admin-page/styles.module.scss
+++ b/projects/packages/videopress/src/client/admin/components/admin-page/styles.module.scss
@@ -41,6 +41,17 @@
}
}
+// VIDP-242: prevent from being shrunk to 0 by the
+// jetpack-admin-page-layout flex chain. The shared .section-hero has
+// overflow: hidden, which lets its min-height: auto resolve to 0 in a
+// flex column, so the hero absorbs all shrink pressure from the populated
+// library and clips the "Add new video" button. This wrapper keeps the
+// hero at content height. Safe to remove when the legacy dashboard is
+// retired at the Phase 9 cutover of issue #48506.
+.hero-shrink-guard {
+ flex-shrink: 0;
+}
+
.first-video-wrapper {
display: flex;
flex-direction: column;
diff --git a/projects/plugins/jetpack/changelog/fix-add-new-video-button-clipped b/projects/plugins/jetpack/changelog/fix-add-new-video-button-clipped
new file mode 100644
index 000000000000..30d80e2c45ce
--- /dev/null
+++ b/projects/plugins/jetpack/changelog/fix-add-new-video-button-clipped
@@ -0,0 +1,4 @@
+Significance: patch
+Type: bugfix
+
+VideoPress: fix the Add new video button disappearing on the admin dashboard after the first video is uploaded.
diff --git a/projects/plugins/videopress/changelog/fix-add-new-video-button-clipped b/projects/plugins/videopress/changelog/fix-add-new-video-button-clipped
new file mode 100644
index 000000000000..53b668b8ca5d
--- /dev/null
+++ b/projects/plugins/videopress/changelog/fix-add-new-video-button-clipped
@@ -0,0 +1,4 @@
+Significance: patch
+Type: fixed
+
+Fix the Add new video button disappearing on the admin dashboard after the first video is uploaded.