diff --git a/src/snek/templates/app.html b/src/snek/templates/app.html
index d3c35ef..272bef4 100644
--- a/src/snek/templates/app.html
+++ b/src/snek/templates/app.html
@@ -75,7 +75,7 @@
// sidebarElement.style.display = 'none';
const containerElement = document.querySelector('#terminal');
containerElement.style.position = 'fixed';
-containerElement.style.width = '40%';
+containerElement.style.width = '50%';
containerElement.style.height = '100%';
containerElement.style.left = '10%';
containerElement.style.top = '0px';
@@ -85,7 +85,7 @@ const messagesElement = document.querySelector('.chat-area');
messagesElement.style.position = 'fixed';
messagesElement.style.width = '40%';
messagesElement.style.height = '100%';
-messagesElement.style.left = '50%';
+messagesElement.style.left = '60%';
messagesElement.style.top = '0px';
const messageList = document.querySelector('message-list')