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.
This commit is contained in:
parent
99cf3da9ab
commit
5b2b91f06c
@ -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 {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user