diff --git a/src/App.vue b/src/App.vue index 14526ae..82e523b 100644 --- a/src/App.vue +++ b/src/App.vue @@ -8,11 +8,27 @@ const router = useRouter(); const barItems = ref([ { name: "Projects", - href: "/", }, { name: "Settings", - href: "/settings", + showList: false, + list: [ + { + name: "Theme", + }, + { + name: "Download store", + }, + { + name: "Reset store", + }, + { + name: "Change user", + }, + { + name: "Notifications", + }, + ], }, ]); diff --git a/src/assets/base.css b/src/assets/base.css index 3906991..639c10b 100644 --- a/src/assets/base.css +++ b/src/assets/base.css @@ -25,7 +25,9 @@ body { /* background-image: url(@/assets/images/Floral-Grey-Seamless-Pattern-For-Website-Background.jpg);*/ background-color: var(--primary-color); } -input { +input, +textarea, +select { outline: unset; font-family: var(--main-font); } diff --git a/src/components/actionsbox.vue b/src/components/actionsbox.vue index ae29bfd..3f8ca19 100644 --- a/src/components/actionsbox.vue +++ b/src/components/actionsbox.vue @@ -1,5 +1,5 @@