diff --git a/web/src/components/HeaderBar.vue b/web/src/components/HeaderBar.vue index 1b6379c..c48e935 100644 --- a/web/src/components/HeaderBar.vue +++ b/web/src/components/HeaderBar.vue @@ -1,139 +1,134 @@ - - - - - - - - - - - - Add License - - - Add an extra License to the database - - - - + + + + + + + + + + + + + Add License + + + Add an extra License to the database + + - - - - - addStartDate = undefined" - readonly - clearable - hide-details - > - - - - + + + + + + addStartDate = undefined" + readonly + clearable + hide-details + > + + + + + + + + + addStopDate = undefined" + readonly + clearable + hide-details + > + + + + + + + + + + + all fields marked with * are required + - - - - addStopDate = undefined" - readonly - clearable - hide-details - > - - - - - - - - - all fields marked with * are required - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - + @@ -142,31 +137,46 @@ - diff --git a/web/src/plugins/vuetify.ts b/web/src/plugins/vuetify.ts index b7396db..27d13ef 100644 --- a/web/src/plugins/vuetify.ts +++ b/web/src/plugins/vuetify.ts @@ -5,11 +5,12 @@ */ // Styles -import '@mdi/font/css/materialdesignicons.css' -import 'vuetify/styles' +import "@mdi/font/css/materialdesignicons.css"; +import "vuetify/styles"; // Composables -import { createVuetify } from 'vuetify' +import { createVuetify } from "vuetify"; +import { VNumberInput } from "vuetify/labs/components"; // https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides export default createVuetify({ @@ -18,14 +19,17 @@ export default createVuetify({ light: { dark: false, colors: { - main: '#024950', - darker: '#003135', - contrast: '#964734', - accent: '#0FA4AF', - accentLigher: '#AFDDE5', - backdrop: '#e3e3e3', + main: "#024950", + darker: "#003135", + contrast: "#964734", + accent: "#0FA4AF", + accentLigher: "#AFDDE5", + backdrop: "#e3e3e3", }, - } + }, }, }, -}) + components: { + VNumberInput, + }, +});