\r\n \u003C/div>\r\n\r\n \u003Cdiv>\r\n \u003Ch2 class=\"text-lg font-semibold my-0\">\r\n \u003CContentSlot :use=\"$slots.title\" unwrap=\"p\" />\r\n \u003C/h2>\r\n\r\n \u003Cp class=\"text-gray-500 dark:text-gray-400 text-base mt-1 mb-0\">\r\n \u003CContentSlot :use=\"$slots.description\" unwrap=\"p\" />\r\n \u003C/p>\r\n \u003C/div>\r\n \u003C/div>\r\n```\r\n**My Solution**\r\n```\r\n\u003Cdiv class=\"flex flex-col sm:flex-row items-center gap-4 mb-8\">\r\n \u003Cdiv class=\"w-14 h-14 bg-gray-100 dark:bg-gray-800 ring-1 shrink-0 ring-gray-300 dark:ring-gray-700 rounded-md flex items-center justify-center\">\r\n \u003CUIcon :name=\"icon\" class=\"w-8 h-8\" />\r\n \u003C/div>\r\n\r\n \u003Cdiv>\r\n \u003Ch2 class=\"text-lg font-semibold my-0\">\r\n \u003CContentSlot :use=\"$slots.title\" unwrap=\"p\" />\r\n \u003C/h2>\r\n\r\n \u003Cp class=\"text-gray-500 dark:text-gray-400 text-base mt-1 mb-0\">\r\n \u003CContentSlot :use=\"$slots.description\" unwrap=\"p\" />\r\n \u003C/p>\r\n \u003C/div>\r\n \u003C/div>\r\n```\r\n**Example 1:**\r\n[\r\n\r\n](url)\r\n\r\n**Example 2**\r\n\r\n\r\n**After Solution**\r\n\r\n\r\nShould I create a pull req?\r\n\r\n\r\n\n```[tasklist]\n### Tasks\n```\n",[],1399,"nuxt.com","Icons Shrinking below 900px width and in Tablet View(768) on enterprise support page","2023-10-27T09:01:27Z","https://github.com/nuxt/nuxt.com/issues/1399",0.6439257,{"description":2930,"labels":2931,"number":2934,"owner":2877,"repository":2878,"state":2915,"title":2935,"updated_at":2936,"url":2937,"score":2938},"### Environment\n\n\n\nI get this error anytime I try and use \u003CUInput /> even without any other code.\n\n### Version\n\nv3.0.0-alpha.5\n\n### Reproduction\n\n`\u003Ctemplate>\n \u003CUContainer>\n \u003CUForm :schema=\"schema\" :state=\"state\" class=\"space-y-4\" @submit=\"onSubmit\">\n \u003CUFormField label=\"Code\" name=\"Code\"\n >\u003CUInput v-model=\"state.code\" />\n \u003C/UFormField>\n \u003C/UForm>\n \u003C/UContainer>\n\u003C/template>\n\n\u003Cscript setup lang=\"ts\">\nimport { z } from 'zod';\nimport type { FormSubmitEvent } from '#ui/types';\n\nconst supabase = useSupabaseClient();\nconst toast = useToast();\n\n//Form\nconst schema = z.object({\n code: z.string().min(3),\n});\n\ntype Schema = z.output\u003Ctypeof schema>;\n\nconst state = reactive\u003CPartial\u003CSchema>>({\n code: undefined,\n});\n\nasync function onSubmit(event: FormSubmitEvent\u003CSchema>) {\n toast.add({\n title: 'Success',\n description: 'The form has been submitted.',\n color: 'success',\n });\n console.log(event.data);\n}\n\u003C/script>\n`\n\n### Description\n\nUInput causes an error\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2932,2933],{"name":2909,"color":2910},{"name":2871,"color":2872},2349,"UInput causes error","2024-10-10T14:15:25Z","https://github.com/nuxt/ui/issues/2349",0.67428154,{"description":2940,"labels":2941,"number":2946,"owner":2877,"repository":2947,"state":2915,"title":2948,"updated_at":2949,"url":2950,"score":2951},"I've explored other font providers, looks like `fontsource` is also quite promising.\r\n\r\nCurrently most of its fonts are from Google Fonts, along with some icons and some other fonts. It's also the service that Cloudflare Fonts is fetching from.\r\n\r\n@danielroe Would you like to include this font provider? If so, I'd like to work on it.\r\n\r\nDocs: https://fontsource.org/docs",[2942,2943],{"name":2868,"color":2869},{"name":2944,"color":2945},"provider","1161A4",65,"fonts","feat: fontsource provider","2024-03-20T13:12:12Z","https://github.com/nuxt/fonts/issues/65",0.67602265,{"description":2953,"labels":2954,"number":2957,"owner":2877,"repository":2878,"state":2915,"title":2958,"updated_at":2959,"url":2960,"score":2961},"### For what version of Nuxt UI are you asking this question?\n\nv3.0.0-alpha.x\n\n### Description\n\nIn my Nuxt 3 project (that uses Nuxt UI `v3.0.0-alpha9`), I have a Vue component like this:\n\n```vue\n\u003Cscript setup lang=\"ts\">\n...\n\u003C/script>\n\n\u003Ctemplate>\n \u003CUContainer class=\"section\">\n ...\n \u003C/UContainer>\n\u003C/template>\n\n\u003Cstyle scoped lang=\"scss\">\n@use \"tailwindcss\";\n\n.section + .section {\n @apply mt-8 lg:mt-12;\n}\n\u003C/style>\n```\n\nThe problem is that `@apply mt-8 lg:mt-12;` doesn't work unless I add this to my `nuxt.config.ts`:\n```\npostcss: {\n plugins: {\n \"@tailwindcss/postcss\": {}, // https://tailwindcss.com/docs/v4-beta#using-post-css\n },\n},\n```\n\nHowever, when I do this, the Nuxt UI components stop working properly (e.g., Slideover renders at the bottom of the page and with wrong styling). How can I make the `@apply ...` work without breaking the Nuxt UI components?\n\nThis is my `package.json`:\n```json\n{\n \"name\": \"frontend\",\n \"private\": true,\n \"type\": \"module\",\n \"scripts\": {\n \"postinstall\": \"husky install && nuxt prepare\",\n \"dev\": \"nuxt dev\",\n \"build\": \"nuxt build\",\n \"preview\": \"nuxt preview\"\n },\n \"dependencies\": {\n \"@nuxt/ui\": \"^3.0.0-alpha.9\",\n \"nuxt\": \"latest\",\n \"nuxt-svgo\": \"latest\",\n \"vue\": \"latest\",\n \"vue-router\": \"latest\"\n },\n \"devDependencies\": {\n \"@commitlint/cli\": \"latest\",\n \"@commitlint/config-conventional\": \"latest\",\n \"husky\": \"latest\",\n \"sass\": \"latest\"\n }\n}\n```\n\nThis is my `nuxt.config.ts`:\n```ts\n// https://nuxt.com/docs/api/configuration/nuxt-config\nexport default defineNuxtConfig({\n compatibilityDate: \"2024-04-03\",\n devtools: { enabled: false },\n modules: [\"@nuxt/ui\", \"nuxt-svgo\"],\n css: [\"@/assets/css/main.css\"],\n // postcss: {\n // plugins: {\n // \"@tailwindcss/postcss\": {}, // https://tailwindcss.com/docs/v4-beta#using-post-css\n // },\n // },\n appConfig: {\n // https://ui3.nuxt.dev/getting-started/theme#colors\n ui: {\n colors: {\n primary: \"primary\", // Defined in `assets/css/theme.css`\n secondary: \"secondary\", // Defined in `assets/css/theme.css`\n },\n },\n },\n});\n```\n\nThis is my `assets/main.css`:\n```css\n/* https://ui3.nuxt.dev/getting-started/installation/nuxt#import-tailwind-css-and-nuxt-ui-in-your-css */\n@import \"tailwindcss\";\n@import \"@nuxt/ui\";\n```",[2955,2956],{"name":2888,"color":2889},{"name":2871,"color":2872},2772,"@apply Tailwind CSS class in a component's `\u003Cstyle>` tag","2024-12-09T11:14:28Z","https://github.com/nuxt/ui/issues/2772",0.6768476,{"description":2963,"labels":2964,"number":2967,"owner":2877,"repository":2878,"state":2915,"title":2968,"updated_at":2969,"url":2970,"score":2971},"### For what version of Nuxt UI are you suggesting this?\n\nv3.0.0-alpha.x\n\n### Description\n\n[CommandPalette](https://ui3.nuxt.dev/components/command-palette) is great but I wish it could display only an input by default and then open the content in a popper when clicking in the input. I think this is currently not possible but a very common use case. \n\nThis is what I would like to archive, screenshots from Shopify:\n\n\n\n\n\n\n\n### Additional context\n\n_No response_",[2965,2966],{"name":2868,"color":2869},{"name":2871,"color":2872},2832,"v3 CommandPalette: Open only content within popper","2024-12-05T13:24:12Z","https://github.com/nuxt/ui/issues/2832",0.6799487,{"description":2973,"labels":2974,"number":2975,"owner":2877,"repository":2924,"state":2915,"title":2976,"updated_at":2977,"url":2978,"score":2979},"Open https://nuxt.com/docs/guide/directory-structure/composables, **Introduction** page is shown instead of **Composables**\n\n\n\nI think the regression is due to 43b0f43",[],1752,"All docs/[...slug] routes show Introduction page","2025-01-14T11:25:53Z","https://github.com/nuxt/nuxt.com/issues/1752",0.6825713,["Reactive",2981],{},["Set"],["ShallowReactive",2984],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fxsqGtF9aAcEisGxcp3EYGFU95l58xEsMm4qoqattJjg":-1},"/nuxt/ui/2856"]