I'm using MathQuill with NextJS and the font resolution is horrible. Why's that?

90 Views Asked by At

Matrix brackets appear blurry.

enter image description here

  • I'm using NextJS. I tried with Creat React App, and the resolution there is fine.
  • I'm using TailwindCSS and globalsCSS.
  • I'm using my own fork of react-mathquill, which includes support for matrices. Link.

I'm not sure what else to share, but here's my tailwind.config.js file, in case it helps:

module.exports = {
content: ["./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}"],
darkMode: "class",
theme: {
  extend: {
    colors: {
      "primary": "#0F52BA",
      "primary-hover" : "#1366e9", 
      "typography" : "#313131",
      "sidebar" : "#FAFAFA",
      "dropdown-hover" : "gray-500"
    },
    fontFamily: {
      "open" : ['"Open Sans"', "sans-serif"]
    }
  },
},
plugins: [require('@tailwindcss/forms')],
}

0

There are 0 best solutions below