Custom border-radius

Because the Ncmaz NextJs project uses the TailwindCss, so you can essay to customize the border-radius - https://tailwindcss.com/docs/border-radius

  1. Open/edit the Ncmaz-faust/tailwind.config.js file

  2. Add the borderRadius option to module.exports/theme/extend (Change the value as you like)

        extend: {
          ...
          borderRadius: {
            none: "0",
            sm: "0rem",
            DEFAULT: "0rem",
            md: "0rem",
            lg: "0rem",
            xl: "0rem",
            "2xl": "0rem",
            "3xl": "0rem",
            "[2rem]": "0rem",
            "[40px]": "0rem",
            full: "9999px",
          },
        }, 

  3. Save and try to run on localhost if you want: "npm run dev"

  4. After that, you can redeploy to production

Last updated