diff --git a/app/assets/css/main.css b/app/assets/css/main.css index bdc986c..c0d6664 100644 --- a/app/assets/css/main.css +++ b/app/assets/css/main.css @@ -18,6 +18,10 @@ --ui-font-family: 'DM Sans', sans-serif; transition-duration: 0.7s; + + .prose { + max-width: none; + } } .dark { @@ -31,6 +35,10 @@ --ui-font-family: 'DM Sans', sans-serif; transition-duration: 0.7s; + + .prose { + max-width: none; + } } @keyframes wave { diff --git a/app/components/chat/CommandPalette.vue b/app/components/chat/CommandPalette.vue index b549586..4b1470e 100644 --- a/app/components/chat/CommandPalette.vue +++ b/app/components/chat/CommandPalette.vue @@ -2,6 +2,13 @@ import type { CommandPaletteItem } from '@nuxt/ui' import { ChatState } from '~~/types' +defineProps({ + active: { + type: Boolean, + default: false, + }, +}) + const searchTerm = ref('') const openMessageModal = ref(false) const openClearModal = ref(false) @@ -51,10 +58,15 @@ const commandPaletteUi = { item: 'data-highlighted:not-data-disabled:before:bg-muted', content: 'flex-1 overflow-y-auto', } + +// const isDesktop = computed(() => window.innerWidth >= 768)