Increase mobile chat font size

This commit is contained in:
Alexej Wolff
2026-02-11 21:38:51 +01:00
parent eff60fbae8
commit f52c86b049
2 changed files with 7 additions and 4 deletions
+1 -1
View File
@@ -317,7 +317,7 @@
@media (max-width: 768px) { @media (max-width: 768px) {
.message-content { .message-content {
font-size: 19px; font-size: 22px;
line-height: 1.8; line-height: 1.8;
} }
} }
+4 -1
View File
@@ -662,7 +662,10 @@ export default function GamePage() {
setIsInitialLoading(false); setIsInitialLoading(false);
}; };
const handleDeleteSession = async (sessionId: string, sessionName: string) => { const handleDeleteSession = async (
sessionId: string,
sessionName: string,
) => {
if (!id) return; if (!id) return;
const confirmed = confirm(`Удалить сессию "${sessionName}"?`); const confirmed = confirm(`Удалить сессию "${sessionName}"?`);