diff --git a/front/volume/public/global.css b/front/volume/public/global.css
index bb28a94..420c3fb 100644
--- a/front/volume/public/global.css
+++ b/front/volume/public/global.css
@@ -1,5 +1,6 @@
html, body {
- position: relative;
+ position: fixed;
+ overflow: hidden;
width: 100%;
height: 100%;
}
diff --git a/front/volume/public/img/chat.png b/front/volume/public/img/chat.png
new file mode 100644
index 0000000..69ecb0d
Binary files /dev/null and b/front/volume/public/img/chat.png differ
diff --git a/front/volume/public/img/close.png b/front/volume/public/img/close.png
new file mode 100644
index 0000000..7bd7e22
Binary files /dev/null and b/front/volume/public/img/close.png differ
diff --git a/front/volume/public/img/send.png b/front/volume/public/img/send.png
new file mode 100644
index 0000000..bec0025
Binary files /dev/null and b/front/volume/public/img/send.png differ
diff --git a/front/volume/src/App.svelte b/front/volume/src/App.svelte
index 21b5cc3..a1bfc7b 100644
--- a/front/volume/src/App.svelte
+++ b/front/volume/src/App.svelte
@@ -9,6 +9,7 @@
import type { SpectateType } from './components/Spectate.svelte';
import Play from './components/Play.svelte';
import Pong from './components/Pong/Pong.svelte';
+ import Chat from './components/Chat.svelte'
let isProfileOpen = false;
function clickProfile() {
@@ -76,6 +77,7 @@
{/if}
+