skip to Main Content

Css – Radial progress bar using TailwindUI

Background I have a small Phoenix 1.7 app where I am trying to add a radial progress bar, using the default TailwindUI components: https://tailwindui.com/components Unfortunately for me, I was only able to find normal progress bars: https://flowbite.com/docs/components/progress/ Namely: <div class="w-full…

VIEW QUESTION

Javascript – Add an element after Alpine.js element

I have a datepicker with tailwindcss and alpinejs and it works as expected: this is my index.html file: <!doctype html> <html lang="en"> <head> <title>Datepicker</title> <script src="https://cdn.tailwindcss.com"></script> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn.min.js"></script> <style> [x-cloak] {display: none !important;} </style> </head> <body class="flex justify-center"> <div…

VIEW QUESTION
Back To Top
Search