Skip to content

Tailwind CSS

We have used Tailwind in this project, an excellent choice for web developers looking to build efficient web applications using pre-built CSS classes.

You can find our tailwind configuration file named tailwind.config.cjs in the project's root and update and customize the file content as you wish. 😊

js
export default {
  content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
  darkMode: "class",
  mode: "jit",
  theme: {
    extend: {},
  },
  plugins: [],
}

Related: Styles

To learn more about tailwind , please read its official documentation here.

COPYRIGHT