diff --git a/src/assets/oruga-tailwindcss.css b/src/assets/oruga-tailwindcss.css index 87f471fb6..5c43ccf14 100644 --- a/src/assets/oruga-tailwindcss.css +++ b/src/assets/oruga-tailwindcss.css @@ -146,6 +146,9 @@ body { .taginput-item { @apply bg-primary mr-2; } +.taginput-autocomplete { + @apply flex-1 !drop-shadow-none; +} .taginput-item:first-child { @apply ml-2; @@ -343,8 +346,8 @@ button.menubar__button { .o-drop__menu--active { @apply z-50; } -.o-dpck__box { - @apply px-4 py-1; +.datepicker-box { + @apply block px-4 py-1; } .o-dpck__header { @apply pb-2 mb-2; @@ -352,7 +355,7 @@ button.menubar__button { } .o-dpck__header__next, .o-dpck__header__previous { - @apply justify-center text-center no-underline cursor-pointer items-center shadow-none inline-flex relative select-none leading-6 border rounded h-10 p-2 m-1 dark:text-white; + @apply justify-center text-center no-underline cursor-pointer items-center shadow-none inline-flex relative select-none leading-6 border rounded h-10 p-2 m-1 dark:text-white hover:px-2; min-width: 2.25em; } .o-dpck__header__list { diff --git a/src/components/Event/TagInput.vue b/src/components/Event/TagInput.vue index 1019ae4cd..ee4cf1568 100644 --- a/src/components/Event/TagInput.vue +++ b/src/components/Event/TagInput.vue @@ -1,15 +1,17 @@