Mário Silva
Mário Silva
Any development on this question?
In fact, every property that can have multiple units, can have the fallback to px. Saying this: ```Bash font-size: 0px; font-size: 0em; font-size: 0rem; font-size: 0pt; line-height: 0px; line-height: 0em;...
> Hi > > You can solve this issue by adding below css in styles.scss > > `* { padding: 0; margin: 0; box-sizing: border-box; }` > > you can...
In my case, I just converted the `jest.config.js` to `jest.config.ts` and instead of `required('@testing-library/jest-dom')` `import '@testing-library/jest-dom'`. ```TS // jest.config.js /** @type {import('ts-jest').JestConfigWithTsJest} */ module.exports = { ... setupFilesAfterEnv: ['/jest.setup.ts'], ......