From e25a27b359896f1c759c23b6e544dd7c5f9185c5 Mon Sep 17 00:00:00 2001
From: Adam Procter <adamprocter@researchnot.es>
Date: Sun, 22 Aug 2021 10:51:43 +0100
Subject: [PATCH] edits to CSS

---
 public/index.html          |  2 +-
 src/components/MyNodes.vue | 11 ++++++++++-
 2 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/public/index.html b/public/index.html
index fe66dc2..110ab81 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 385e08b..f807748 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>
-- 
GitLab