Mistivia 1 месяц назад
Родитель
Сommit
ae7122250e
1 измененных файлов с 4 добавлено и 2 удалено
  1. 4 2
      index.html

+ 4 - 2
index.html

@@ -26,8 +26,10 @@
         <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>
-        <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 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>
     <script type="module" src="/src/main.js"></script>
 </body>