From b19bdc7e4ef1e3123a62ffd4a9921c7625eb4f41 Mon Sep 17 00:00:00 2001 From: andrewlalis Date: Fri, 18 Aug 2023 12:25:53 -0400 Subject: [PATCH] Updated styles a bit. --- litelist-app/src/assets/base.css | 6 +- litelist-app/src/components/LogOutButton.vue | 13 +- litelist-app/src/components/PageContainer.vue | 20 +++ litelist-app/src/views/ListsView.vue | 114 ++++++++++-------- litelist-app/src/views/LoginView.vue | 70 ++++++----- litelist-app/src/views/SingleListView.vue | 75 +++++++----- 6 files changed, 174 insertions(+), 124 deletions(-) create mode 100644 litelist-app/src/components/PageContainer.vue 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 @@ \ 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() { \ 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() { \ No newline at end of file