Skip to content

Commit 38c1f41

Browse files
authored
Merge pull request #2227 from IntersectMBO/staging
2 parents 2e2e1f4 + d37f69b commit 38c1f41

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

govtool/frontend/src/components/atoms/VotingPowerChips.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ export const VotingPowerChips = ({
3333
height: isMobile ? 16 : 24,
3434
px: 2,
3535
py: isMobile ? 1 : 1.5,
36+
maxHeight: "14px",
3637
}}
3738
>
3839
{!isMobile && (

govtool/frontend/src/components/molecules/GovernanceActionCardElement.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,8 @@ export const GovernanceActionCardElement = ({
111111
alignItems: isMarkdown ? "unset" : "center",
112112
overflow: "hidden",
113113
flexDirection: isMarkdown ? "column" : "row",
114+
// Workaround for not setting the font in markdown
115+
fontFamily: "Poppins, Arial",
114116
}}
115117
>
116118
{isMarkdown ? (

govtool/frontend/src/main.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { QueryClient, QueryClientProvider } from "react-query";
55
import { ReactQueryDevtools } from "react-query/devtools";
66
import TagManager from "react-gtm-module";
77
import { ThemeProvider } from "@emotion/react";
8-
import { CssBaseline } from "@mui/material";
98
import * as Sentry from "@sentry/react";
109

1110
import { ContextProviders, UsersnapProvider } from "@context";
@@ -52,7 +51,6 @@ ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
5251
<React.StrictMode>
5352
<QueryClientProvider client={queryClient}>
5453
<ThemeProvider theme={theme}>
55-
<CssBaseline />
5654
<UsersnapProvider>
5755
<BrowserRouter>
5856
<ContextProviders>

0 commit comments

Comments
 (0)