Compare commits

..
4 Commits
Author SHA1 Message Date
retoor 5b2b91f06c feat: add viewport meta tag with charset to index.html for mobile responsiveness
Inserted <meta charset="UTF-8"> and <meta name="viewport" content="width=device-width, initial-scale=1.0"> into the <head> section of src/rchat/static/index.html, ensuring proper character encoding and responsive scaling on mobile browsers.
2024-12-05 20:46:15 +00:00
retoor 99cf3da9ab chore: remove trailing whitespace and normalize string quotes in app.py websocket handler 2024-12-05 18:39:02 +00:00
retoor 421e969d35 chore: change default port from 8080 to 3018 in __main__.py main function 2024-12-05 18:37:26 +00:00
retoor 9d82613c66 chore: initialize project scaffold with gitignore, Makefile, pyproject.toml, and rchat package skeleton 2024-12-05 18:34:58 +00:00
+3
View File
@@ -2,6 +2,9 @@
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>rchat</title>
<style>
body {