Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
msveshnikov committed Mar 18, 2024
1 parent b52bb46 commit ec0ecfa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<meta name="description" content="Chat with Gemini Pro" />
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Chilanka:300,400,500,700&display=swap" />
<title>Allchat</title>
</head>
<body>
Expand Down
4 changes: 2 additions & 2 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ function App() {
bgcolor="#d4edda"
color="#155724"
padding={1}
style={{ fontFamily: "Chilanka" }}
style={{ fontFamily: "cursive" }}
borderRadius={2}
>
{chat.user}
Expand All @@ -188,7 +188,7 @@ function App() {
padding={1}
marginTop={1}
borderRadius={2}
style={{ fontFamily: "Chilanka" }}
style={{ fontFamily: "cursive" }}
>
{isModelResponding && chat.assistant === null && <CircularProgress size={20} />}
{chat.assistant !== null && <ReactMarkdown>{chat.assistant}</ReactMarkdown>}
Expand Down
2 changes: 1 addition & 1 deletion src/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const theme = (mode) =>
},
},
typography: {
fontFamily: "Chilanka",
fontFamily: ["cursive"].join(","),
},
});

Expand Down

0 comments on commit ec0ecfa

Please sign in to comment.