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
1 change: 1 addition & 0 deletions frontends/mit-open/src/page-components/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import { useUserMe } from "api/hooks/user"
const Bar = styled(AppBar)(({ theme }) => ({
height: "60px",
padding: "0 8px",
borderBottom: `1px solid ${theme.custom.colors.lightGray2}`,
backgroundColor: theme.custom.colors.white,
color: theme.custom.colors.darkGray1,
display: "flex",
Expand Down
3 changes: 1 addition & 2 deletions frontends/mit-open/src/page-components/Header/UserMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const UserMenuContainer = styled.button({
})

const LoginButtonContainer = styled(FlexContainer)(({ theme }) => ({
paddingRight: "32px",
paddingRight: "16px",
"&:hover": {
textDecoration: "none",
},
Expand Down Expand Up @@ -159,7 +159,6 @@ const UserMenu: React.FC<UserMenuProps> = ({ variant }) => {
<FlexContainer className="login-button-desktop">
<ButtonLink
data-testid="login-button-desktop"
edge="circular"
size="small"
reloadDocument={true}
href={loginUrl}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ const NavDrawer = (props: NavDrawerProps) => {
hideBackdrop={true}
PaperProps={{
sx: {
borderRight: "none",
boxShadow: "0px 6px 24px 0px rgba(37, 38, 43, 0.10)",
zIndex: (theme) => theme.zIndex.appBar - 1,
overscrollBehavior: "contain",
Expand Down