From ddffa640edca6c4be8e09cf76573c2fa201f4e26 Mon Sep 17 00:00:00 2001 From: Seth Sharp Date: Wed, 21 Aug 2024 14:19:03 +1000 Subject: [PATCH] wipping slowly --- package-lock.json | 8 ++++---- package.json | 2 +- resources/js/Components/Editor/Editor.vue | 2 +- resources/js/Components/Links/NavLink.vue | 2 +- resources/js/Layouts/AuthenticatedLayout.vue | 12 ++++++------ resources/js/Layouts/IndexBlogsLayout.vue | 2 +- resources/views/app.blade.php | 2 +- tailwind.config.js | 2 ++ 8 files changed, 17 insertions(+), 15 deletions(-) diff --git a/package-lock.json b/package-lock.json index bf028cd..ae2ff67 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,7 +8,7 @@ "@alpinejs/intersect": "^3.13.7", "@headlessui/vue": "^1.7.16", "@heroicons/vue": "^2.0.18", - "@sethsharp/ui": "1.0.0-alpha.2.0.29", + "@sethsharp/ui": "1.0.0-alpha.2.0.33", "@tiptap/extension-bubble-menu": "^2.2.1", "@tiptap/extension-code-block-lowlight": "^2.2.4", "@tiptap/extension-document": "^2.2.1", @@ -1061,9 +1061,9 @@ ] }, "node_modules/@sethsharp/ui": { - "version": "1.0.0-alpha.2.0.29", - "resolved": "https://registry.npmjs.org/@sethsharp/ui/-/ui-1.0.0-alpha.2.0.29.tgz", - "integrity": "sha512-HBrcAabC68f8JUj3su/btq8pu+WcuWg1NGdXXSP9Uih2EtOnxBophQHVNExxMN4icglJq/edg+9xkGfRjSHGQA==", + "version": "1.0.0-alpha.2.0.33", + "resolved": "https://registry.npmjs.org/@sethsharp/ui/-/ui-1.0.0-alpha.2.0.33.tgz", + "integrity": "sha512-+j8wIIfW74AwhrSO97jfYv3ukroT9/JgUTd/T1pyfW3rckXuLhF47qY0VmgBjRZSGV6TBm4EvRruwKy5yly5Fw==", "dependencies": { "@heroicons/vue": "^2.1.4", "@vueuse/core": "^10.11.0", diff --git a/package.json b/package.json index 4dff238..7369731 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,7 @@ "@alpinejs/intersect": "^3.13.7", "@headlessui/vue": "^1.7.16", "@heroicons/vue": "^2.0.18", - "@sethsharp/ui": "1.0.0-alpha.2.0.29", + "@sethsharp/ui": "1.0.0-alpha.2.0.33", "@tiptap/extension-bubble-menu": "^2.2.1", "@tiptap/extension-code-block-lowlight": "^2.2.4", "@tiptap/extension-document": "^2.2.1", diff --git a/resources/js/Components/Editor/Editor.vue b/resources/js/Components/Editor/Editor.vue index 2c739e1..2c2caef 100644 --- a/resources/js/Components/Editor/Editor.vue +++ b/resources/js/Components/Editor/Editor.vue @@ -27,7 +27,7 @@ const editor = useEditor({ ], editorProps: { attributes: { - class: 'bg-white p-4 max-w-none w-full min-h-[500px] focus:outline-none border border-gray-200 rounded-md max-h-[85vh] overflow-y-scroll overflow-hidden prose prose-img:m-0 ', + class: 'bg-white p-4 max-w-none w-full min-h-[500px] focus:outline-none border border-gray-200 rounded-md max-h-[85vh] overflow-y-scroll overflow-hidden prose prose-img:m-0 dark:bg-slate-950', }, }, onUpdate: ({ editor }) => { diff --git a/resources/js/Components/Links/NavLink.vue b/resources/js/Components/Links/NavLink.vue index 61ad1f9..b0c996f 100644 --- a/resources/js/Components/Links/NavLink.vue +++ b/resources/js/Components/Links/NavLink.vue @@ -15,7 +15,7 @@ const props = defineProps({ const classes = computed(() => props.active ? 'inline-flex items-center px-1 pt-1 border-b-2 border-primary-400 text-sm font-medium leading-5 text-gray-900 focus:outline-none focus:border-primary-700 transition duration-150 ease-in-out dark:text-gray-300' - : 'inline-flex items-center px-1 pt-1 border-b-2 border-transparent text-sm font-medium leading-5 text-gray-400 hover:text-gray-300 hover:border-gray-300 focus:outline-none focus:text-gray-700 focus:border-gray-300 transition duration-150 ease-in-out' + : 'inline-flex items-center px-1 pt-1 border-b-2 border-transparent text-sm font-medium leading-5 text-gray-400 hover:text-gray-300 hover:border-gray-300 focus:outline-none focus:text-gray-700 focus:border-gray-300 transition duration-150 ease-in-out dark:focus:text-gray-400' ) diff --git a/resources/js/Layouts/AuthenticatedLayout.vue b/resources/js/Layouts/AuthenticatedLayout.vue index ad7daab..eaafc48 100644 --- a/resources/js/Layouts/AuthenticatedLayout.vue +++ b/resources/js/Layouts/AuthenticatedLayout.vue @@ -1,7 +1,7 @@