Issue I’m building a laravel/tailwind dashboard but I’m now facing an issue with the overflow of an element. The design I want to achieve is the follwing : And what i achieved until now is the following: With this code
Continue readingTag: tailwind-3
Tailwind css table with fixed header and scrolling tbody vertically
Issue I have the code below for a table based on tailwind css. If I remove the block class, the table is not scrollable anymore. Adding the block class to tbody breaks the thead. See Images attached. CodePen if you
Continue readingTailwind css table with fixed header and scrolling tbody vertically
Issue I have the code below for a table based on tailwind css. If I remove the block class, the table is not scrollable anymore. Adding the block class to tbody breaks the thead. See Images attached. CodePen if you
Continue readingHow to uninstall tailwind from my react application?
Issue I have installed react-bootstrap and tailwind together for my react app. I’m getting some conflict using both of them. So I want to uninstall tailwind. Solution When you use npm: npm uninstall tailwindcss When you use yarn: yarn remove
Continue readingTailwind, Vue problem with non-English characters when using tags right after eachother
Issue I am facing an issue when using tags right after eachother(ex: span, ‘a’ and ‘p’). characters merge with each other, although they are in seperate html tags! How can I prevent that from happing? <a href="" class="underline mx-1">حریم شخصی</a>
Continue readingProblems accessing the color value defined in the tailwind.config.js file (in scss file)
Issue in a project with Tailwind i need to darken a color defined in the tailwind.config.js (directly in the scss file). @debug "Darken Color: #{darken(theme("colors.gray.500"), 10%)}"; This cause the error: SassError: $color: theme("colors.gray.500") is not a color. However when i
Continue reading