diff --git a/public/index.html b/public/index.html
index fe66dc2265edb03471cddf035c3cebba5093037a..110ab81a05fcfa31f14393d0cc44928c4ec2a6af 100644
--- a/public/index.html
+++ b/public/index.html
@@ -4,7 +4,7 @@
 <head>
   <meta charset="utf-8">
   <meta http-equiv="X-UA-Compatible" content="IE=edge">
-  <meta name="viewport" content="width=device-width,initial-scale=1.0" />
+  <meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no" />
 
   <!-- Open Graph -->
   <meta property="og:image" content="https://alpha.nodenogg.in/files/logo_nt.png" />
diff --git a/src/components/MyNodes.vue b/src/components/MyNodes.vue
index 385e08bb55eb05b915a887dcd08ce47b5468e06b..f807748aee21ff3fd43d316bf7bba61f7f43ab70 100644
--- a/src/components/MyNodes.vue
+++ b/src/components/MyNodes.vue
@@ -8,8 +8,12 @@
           :id="nodes.node_id"
           ref="textentry"
           placeholder="Type your thoughts and ideas here! (auto saved every keystroke)"
+          rows="5"
         ></textarea>
         <p class="info">*markdown supported &amp; autosaves</p>
+        <button>Colour</button>
+        <button>Read</button>
+        <button>Discard</button>
       </template>
       <template v-else>
         <p
@@ -97,6 +101,11 @@ export default {
 }
 
 textarea {
-  width: 95%;
+  font-size: 1em;
+  resize: none;
+  border: none;
+  background-color: rgb(187, 225, 247);
+  width: 100%;
+  box-sizing: border-box;
 }
 </style>