diff --git a/RELEASE.rst b/RELEASE.rst index dd165cf034..9cfc2aedbd 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -1,6 +1,11 @@ Release Notes ============= +Version 0.66.8 +-------------- + +- fix the breadcrum on video collection page (#3304) + Version 0.66.7 (Released May 06, 2026) -------------- diff --git a/frontends/main/src/app-pages/VideoPlaylistCollectionPage/VideoDetailPage.tsx b/frontends/main/src/app-pages/VideoPlaylistCollectionPage/VideoDetailPage.tsx index 063a1cf9a9..9b4a6eecc1 100644 --- a/frontends/main/src/app-pages/VideoPlaylistCollectionPage/VideoDetailPage.tsx +++ b/frontends/main/src/app-pages/VideoPlaylistCollectionPage/VideoDetailPage.tsx @@ -44,10 +44,10 @@ const PageWrapper = styled.div({ }) const BreadcrumbBar = styled.div(({ theme }) => ({ - padding: "20px 0 4px 0", - borderBottom: `2px solid ${theme.custom.colors.red}`, + padding: "18px 0 2px 0", + borderBottom: `1px solid ${theme.custom.colors.red}`, [theme.breakpoints.down("sm")]: { - padding: "16px 0 0 0", + padding: "12px 0 0 0", }, })) diff --git a/main/settings.py b/main/settings.py index a2f007ae2a..199ca38c40 100644 --- a/main/settings.py +++ b/main/settings.py @@ -35,7 +35,7 @@ from main.settings_pluggy import * # noqa: F403 from openapi.settings_spectacular import open_spectacular_settings -VERSION = "0.66.7" +VERSION = "0.66.8" log = logging.getLogger()