diff --git a/litelist-app/src/assets/base.css b/litelist-app/src/assets/base.css
index 08c11b9..ad6866f 100644
--- a/litelist-app/src/assets/base.css
+++ b/litelist-app/src/assets/base.css
@@ -1,4 +1,8 @@
body {
font-family: sans-serif;
margin: 0;
-}
\ No newline at end of file
+}
+
+button {
+ font-size: medium;
+}
diff --git a/litelist-app/src/components/LogOutButton.vue b/litelist-app/src/components/LogOutButton.vue
index 9d9cba1..34a4d26 100644
--- a/litelist-app/src/components/LogOutButton.vue
+++ b/litelist-app/src/components/LogOutButton.vue
@@ -9,19 +9,12 @@ async function doLogOut() {
-
-
-
+
\ No newline at end of file
diff --git a/litelist-app/src/views/ListsView.vue b/litelist-app/src/views/ListsView.vue
index 067cdd8..b0aaaad 100644
--- a/litelist-app/src/views/ListsView.vue
+++ b/litelist-app/src/views/ListsView.vue
@@ -1,11 +1,12 @@
-
-
Lists
+
+
+
Lists
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
\ No newline at end of file
diff --git a/litelist-app/src/views/LoginView.vue b/litelist-app/src/views/LoginView.vue
index d1b1e47..01637fc 100644
--- a/litelist-app/src/views/LoginView.vue
+++ b/litelist-app/src/views/LoginView.vue
@@ -3,6 +3,7 @@ import {ref} from "vue";
import {login, type LoginError} from "@/api/auth";
import {useAuthStore} from "@/stores/auth";
import {useRouter} from "vue-router";
+import PageContainer from "@/components/PageContainer.vue";
const loginModel = ref({
username: "",
@@ -28,34 +29,36 @@ async function doLogin() {
-
LiteList
-
+
+
LiteList
+
+
\ No newline at end of file
diff --git a/litelist-app/src/views/SingleListView.vue b/litelist-app/src/views/SingleListView.vue
index dc07aeb..b155e13 100644
--- a/litelist-app/src/views/SingleListView.vue
+++ b/litelist-app/src/views/SingleListView.vue
@@ -4,6 +4,8 @@ import {nextTick, onMounted, ref, type Ref} from "vue";
import {useAuthStore} from "@/stores/auth";
import {createNote, deleteNote, deleteNoteList, getNoteList} from "@/api/lists";
import {useRoute, useRouter} from "vue-router";
+import PageContainer from "@/components/PageContainer.vue";
+import LogOutButton from "@/components/LogOutButton.vue";
const authStore = useAuthStore()
const route = useRoute()
@@ -72,7 +74,7 @@ async function createNoteAndRefresh() {
-
+
@@ -81,10 +83,11 @@ async function createNoteAndRefresh() {
+