diff --git a/frontend/assets/css/tailwind.css b/frontend/assets/css/tailwind.css index eae4050..72bd553 100644 --- a/frontend/assets/css/tailwind.css +++ b/frontend/assets/css/tailwind.css @@ -26,4 +26,12 @@ .divider { @apply w-full h-1 bg-neutral-250 dark:bg-neutral-850; } + + .checkbox { + @apply h-4 w-4 text-primary rounded dark:bg-neutral-700 bg-neutral-300 hover:cursor-pointer focus:ring-transparent focus:ring-offset-0 border-none + } + + .input { + @apply bg-neutral-200 dark:bg-neutral-800 dark:text-gray-300 text-gray-900 shadow rounded border-none focus:ring-primary + } } \ No newline at end of file diff --git a/frontend/components/layout/Navbar.vue b/frontend/components/layout/Navbar.vue index c543a77..2d50c64 100644 --- a/frontend/components/layout/Navbar.vue +++ b/frontend/components/layout/Navbar.vue @@ -1,5 +1,5 @@