Skip to content

Commit

Permalink
fix: assign font-family
Browse files Browse the repository at this point in the history
  • Loading branch information
adrians5j committed May 15, 2024
1 parent 3995d83 commit 543795f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export const TitleWrapper = styled("div")({
});

export const BlockTitle = styled("div")({
fontFamily: "var(--mdc-typography-font-family)",
border: "1px solid transparent",
fontSize: 20,
whiteSpace: "nowrap",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export const TitleWrapper = styled("div")({
});

export const PageTitle = styled("div")({
fontFamily: "var(--mdc-typography-font-family)",
border: "1px solid transparent",
fontSize: 20,
whiteSpace: "nowrap",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ const AddBlockContainer = styled.div<{ displayMode: string }>(({ displayMode })
});

const AddBlockContent = styled.div<{ displayMode: string }>(({ displayMode }) => ({
fontFamily: "var(--mdc-typography-font-family)",
width: displayMode === "mobile-portrait" ? 280 : 300,
margin: 5,
textAlign: "center",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export const TitleWrapper = styled("div")({
});

export const TemplateTitle = styled("div")({
fontFamily: "var(--mdc-typography-font-family)",
border: "1px solid transparent",
fontSize: 20,
whiteSpace: "nowrap",
Expand Down

0 comments on commit 543795f

Please sign in to comment.