fix some styles

This commit is contained in:
Ginger Wong
2020-08-23 19:37:06 -07:00
parent 4b28ed8f25
commit d4c8c187fd
7 changed files with 19 additions and 44 deletions
+1 -5
View File
@@ -4,11 +4,9 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet" />
<!-- <link href="./styles/layout.css" rel="stylesheet" /> -->
<link href="./styles/chat.css" rel="stylesheet" />
<link href="./styles/standalone-chat.css" rel="stylesheet" />
<script src="//unpkg.com/showdown/dist/showdown.min.js"></script>
</head>
@@ -21,10 +19,8 @@
import { render, html } from "https://unpkg.com/htm/preact/index.mjs?module";
import StandaloneChat from './js/standalone-chat-app.js';
const messagesOnly = false;
(function () {
render(html`<${StandaloneChat} messagesOnly=${messagesOnly} />`, document.getElementById("chat-container"));
render(html`<${StandaloneChat} messagesOnly />`, document.getElementById("chat-container"));
})();
</script>
</body>