ITADN

Classes from documentation are missing in flowbite.css

#1113OpenHakob3 创建于 2025-12-14
H
Hakob3commented
Hello, I'm using Flowbite in a Vue 3 project with Tailwind CSS. I noticed that some classes mentioned in the Flowbite documentation do not appear in the compiled flowbite.css file. Examples: - rounded-base - bg-neutral-secondary-medium - border-default-medium When I use these classes, the styles are not applied on the page, and I can't find them in flowbite.css. **Environment:** - Vue: 3 - Tailwind CSS: 3.x - Flowbite: latest **Tailwind config:** ``` module.exports = { content: [ './index.html', './src/**/*.{vue,js,ts,jsx,tsx}', './node_modules/flowbite/**/*.{js,ts}', ], theme: { extend: {}, }, plugins: [ require('flowbite/plugin'), ], } ```
0 条评论