diff --git a/assets/css/tailwind.css b/assets/css/tailwind.css index b5c61c9..9a1b24e 100644 --- a/assets/css/tailwind.css +++ b/assets/css/tailwind.css @@ -1,3 +1,15 @@ @tailwind base; @tailwind components; @tailwind utilities; + +body, +html { + @apply bg-primary text-white; + -ms-overflow-style: none; /* IE and Edge */ + scrollbar-width: none; /* Firefox */ +} + +body::-webkit-scrollbar, +html::-webkit-scrollbar { + @apply hidden; +} diff --git a/layouts/edit.vue b/layouts/edit.vue new file mode 100644 index 0000000..ae7347a --- /dev/null +++ b/layouts/edit.vue @@ -0,0 +1,9 @@ + diff --git a/pages/notes/[id].vue b/pages/notes/[id].vue index 80f48d7..ec1b43a 100644 --- a/pages/notes/[id].vue +++ b/pages/notes/[id].vue @@ -1,28 +1,8 @@