diff --git a/govtool/frontend/src/components/atoms/VotingPowerChips.tsx b/govtool/frontend/src/components/atoms/VotingPowerChips.tsx index 159859c9..fa11d764 100644 --- a/govtool/frontend/src/components/atoms/VotingPowerChips.tsx +++ b/govtool/frontend/src/components/atoms/VotingPowerChips.tsx @@ -33,6 +33,7 @@ export const VotingPowerChips = ({ height: isMobile ? 16 : 24, px: 2, py: isMobile ? 1 : 1.5, + maxHeight: "14px", }} > {!isMobile && ( diff --git a/govtool/frontend/src/components/molecules/GovernanceActionCardElement.tsx b/govtool/frontend/src/components/molecules/GovernanceActionCardElement.tsx index 898aa996..4ff9709b 100644 --- a/govtool/frontend/src/components/molecules/GovernanceActionCardElement.tsx +++ b/govtool/frontend/src/components/molecules/GovernanceActionCardElement.tsx @@ -111,6 +111,8 @@ export const GovernanceActionCardElement = ({ alignItems: isMarkdown ? "unset" : "center", overflow: "hidden", flexDirection: isMarkdown ? "column" : "row", + // Workaround for not setting the font in markdown + fontFamily: "Poppins, Arial", }} > {isMarkdown ? ( diff --git a/govtool/frontend/src/main.tsx b/govtool/frontend/src/main.tsx index 60187d40..76f6ff41 100644 --- a/govtool/frontend/src/main.tsx +++ b/govtool/frontend/src/main.tsx @@ -5,7 +5,6 @@ import { QueryClient, QueryClientProvider } from "react-query"; import { ReactQueryDevtools } from "react-query/devtools"; import TagManager from "react-gtm-module"; import { ThemeProvider } from "@emotion/react"; -import { CssBaseline } from "@mui/material"; import * as Sentry from "@sentry/react"; import { ContextProviders, UsersnapProvider } from "@context"; @@ -52,7 +51,6 @@ ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render( -