diff --git a/RELEASE.rst b/RELEASE.rst index 2d9190e053..e144694844 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -1,6 +1,12 @@ Release Notes ============= +Version 0.20.2 +-------------- + +- remove border and shadow (#1636) +- set card root to auto height (#1633) + Version 0.20.1 (Released October 01, 2024) -------------- diff --git a/frontends/mit-learn/src/page-components/Header/Header.tsx b/frontends/mit-learn/src/page-components/Header/Header.tsx index 64a6d81fa5..f0df377915 100644 --- a/frontends/mit-learn/src/page-components/Header/Header.tsx +++ b/frontends/mit-learn/src/page-components/Header/Header.tsx @@ -44,20 +44,17 @@ import MITLogoLink from "../MITLogoLink/MITLogoLink" const Bar = styled(AppBar)(({ theme }) => ({ padding: "16px 8px", - borderBottom: `4px solid ${theme.custom.colors.darkGray2}`, backgroundColor: theme.custom.colors.navGray, + boxShadow: "none", display: "flex", justifyContent: "space-between", flexDirection: "column", - boxShadow: "0px 3px 35px 0px rgba(23, 30, 42, 0.50)", ".MuiToolbar-root": { minHeight: "auto", }, [theme.breakpoints.down("sm")]: { height: "60px", padding: "0", - borderBottom: `1px solid ${theme.custom.colors.darkGray2}`, - boxShadow: "0px -2px 20px 0px rgba(0, 0, 0, 0.05)", }, })) diff --git a/frontends/mit-learn/src/page-components/Header/MenuButton.tsx b/frontends/mit-learn/src/page-components/Header/MenuButton.tsx index add3d730a7..ba9b4e2582 100644 --- a/frontends/mit-learn/src/page-components/Header/MenuButton.tsx +++ b/frontends/mit-learn/src/page-components/Header/MenuButton.tsx @@ -40,16 +40,11 @@ const StyledMenuButton = styled.button(({ theme }) => ({ transition: `background ${theme.transitions.duration.short}ms`, cursor: "pointer", borderStyle: "none", - opacity: 0.5, svg: { color: theme.custom.colors.white, }, [theme.breakpoints.down("sm")]: { padding: "4px 0", - opacity: 1, - }, - "&:hover": { - opacity: 1, }, })) diff --git a/frontends/mit-learn/src/pages/UnitsListingPage/UnitsListingPage.tsx b/frontends/mit-learn/src/pages/UnitsListingPage/UnitsListingPage.tsx index 2de92a0bdc..c594d7a442 100644 --- a/frontends/mit-learn/src/pages/UnitsListingPage/UnitsListingPage.tsx +++ b/frontends/mit-learn/src/pages/UnitsListingPage/UnitsListingPage.tsx @@ -110,6 +110,9 @@ const UnitContainer = styled.section(({ theme }) => ({ alignItems: "center", maxWidth: DESKTOP_WIDTH, gap: "32px", + ".MitCard-root": { + height: "auto", + }, [theme.breakpoints.down("md")]: { width: "auto", padding: "0 16px", diff --git a/main/settings.py b/main/settings.py index 191f89b0a4..46fcc3c304 100644 --- a/main/settings.py +++ b/main/settings.py @@ -33,7 +33,7 @@ from main.settings_pluggy import * # noqa: F403 from openapi.settings_spectacular import open_spectacular_settings -VERSION = "0.20.1" +VERSION = "0.20.2" log = logging.getLogger()