Skip to content
Snippets Groups Projects
Commit ae068a8a authored by Sander August Heggland Schrader's avatar Sander August Heggland Schrader
Browse files

Edited css

parent 2ebc7860
No related branches found
No related tags found
1 merge request!40Chat
......@@ -2,7 +2,7 @@
<div class="col-span-3 sm:col-span-2 block">
<div class="w-full">
<div class="flex justify-between border-b border-gray-300">
<div class="grid space-y-2 content-center m-3">
<div class="grid sm:hidden space-y-2 content-center m-3">
<div class="w-8 h-0.5 bg-gray-600"></div>
<div class="w-8 h-0.5 bg-gray-600"></div>
<div class="w-8 h-0.5 bg-gray-600"></div>
......@@ -16,9 +16,9 @@
<div></div>
</div>
<div class="relative w-full p-6 overflow-y-auto h-full">
<div class="relative w-full p-6 overflow-y-auto" style="max-height: 400px">
<ul class="space-y-2">
<div>
<div >
<ChatMessage v-for="(message, i) in messages" v-bind:key="i" :message="message"></ChatMessage>
</div>
</ul>
......@@ -46,6 +46,7 @@ import axios from 'axios';
import { parseCurrentUser } from "@/utils/token-utils";
import ws from '@/services/ws';
export default {
data: () => {
return {
......
......@@ -5,5 +5,8 @@ import store from "./store";
import "./index.css";
import ws from './services/ws';
createApp(App).use(router).use(store).mount("#app");
createApp(App)
.use(router)
.use(store)
.mount("#app");
console.log("WS", ws.test);
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment