Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions RELEASE.rst
Original file line number Diff line number Diff line change
@@ -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)
--------------

Expand Down
5 changes: 1 addition & 4 deletions frontends/mit-learn/src/page-components/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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)",
},
}))

Expand Down
5 changes: 0 additions & 5 deletions frontends/mit-learn/src/page-components/Header/MenuButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
}))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion main/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down
Loading