styling multiselect in dark mode

This commit is contained in:
Geriano
2022-07-31 11:20:48 +07:00
parent 63ab66b06c
commit dd3a9be30f
5 changed files with 69 additions and 8 deletions

View File

@@ -140,6 +140,7 @@ onUnmounted(() => window.removeEventListener('keydown', esc))
</script>
<style src="@vueform/multiselect/themes/default.css"></style>
<style src="@/multiselect.css"></style>
<template>
<DashboardLayout title="Menu">
@@ -190,7 +191,7 @@ onUnmounted(() => window.removeEventListener('keydown', esc))
:createOption="true"
:value="form.route_or_url"
ref="route_or_url"
class="text-gray-800 placeholder:capitalize"
placeholder="route name or url" />
</div>
@@ -209,7 +210,7 @@ onUnmounted(() => window.removeEventListener('keydown', esc))
:createTag="true"
mode="tags"
ref="actives"
class="text-gray-800 placeholder:capitalize"
placeholder="actives" />
</div>
@@ -230,7 +231,7 @@ onUnmounted(() => window.removeEventListener('keydown', esc))
:clearOnSelect="false"
mode="tags"
ref="permissions"
class="text-gray-800 placeholder:capitalize"
placeholder="permissions" />
</div>