Browse Source

fix ul ol display

Mistivia 1 month ago
parent
commit
c665dc482c
2 changed files with 22 additions and 20 deletions
  1. 20 18
      index.html
  2. 2 2
      src/style.css

+ 20 - 18
index.html

@@ -11,24 +11,26 @@
     <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
     <title>Lite AI Chat</title>
 </head>
-<body class="font-sans h-screen flex flex-col max-w-5xl m-auto">
-    <!-- header -->
-    <div class="p-8 bg-gray-100">
-        <select class="modes bg-white p-4 rounded-lg text-lg" id="model-selector"></select>
-    </div>
-    
-    <!-- messages -->
-    <div class="p-6 my-2 flex-1 overflow-y-auto" id="message-container">
-    </div>
-    
-    <!-- input area -->
-    <div class="flex p-4 my-2">
-        <textarea class="flex-1 m-2 p-4 border-gray-200 outline-none resize-none border rounded-lg"
-            placeholder="Input Message..." rows="3" id="input-box"
-        ></textarea>
-        <div class="flex flex-col">
-            <button class="rounded-lg py-4 px-8 bg-gray-200 hover:bg-gray-300 m-2" id="send-button">Send</button>
-            <button class="rounded-lg py-4 px-8 bg-gray-200 hover:bg-gray-300 m-2" id="stop-button">Stop</button>
+<body>
+    <div class="font-sans h-screen flex max-w-6xl flex-col m-auto">
+        <!-- header -->
+        <div class="p-8 bg-gray-100">
+            <select class="modes bg-white p-4 rounded-lg text-lg" id="model-selector"></select>
+        </div>
+        
+        <!-- messages -->
+        <div class="p-6 my-2 flex-1 overflow-y-auto" id="message-container">
+        </div>
+        
+        <!-- input area -->
+        <div class="flex p-4 my-2">
+            <textarea class="flex-1 m-2 p-4 border-gray-200 outline-none resize-none border rounded-lg"
+                placeholder="Input Message..." rows="3" id="input-box"
+            ></textarea>
+            <div class="flex flex-col">
+                <button class="rounded-lg py-4 px-8 bg-gray-200 hover:bg-gray-300 m-2" id="send-button">Send</button>
+                <button class="rounded-lg py-4 px-8 bg-gray-200 hover:bg-gray-300 m-2" id="stop-button">Stop</button>
+            </div>
         </div>
     </div>
     <script type="module" src="/src/main.js"></script>

+ 2 - 2
src/style.css

@@ -35,11 +35,11 @@
 }
 
 .msg ul {
-    @apply list-disc;
+    @apply ml-4 list-disc;
 }
 
 .msg ol {
-    @apply list-decimal;
+    @apply ml-4 list-decimal;
 }
 
 .msg code:not(pre>code) {