I set CSS styles in module.css of my nextjs application, but it don't work
I created a nextjs with electron template application: my code as here: https://codesandbox.io/s/sx6qfm I set CSS classes in VscodeLayout.module.css: .container { width: '100%'; height: '100%' } .header { height: '28px'; width: '100%'; background-color: '#00d9' } .leftBar { background-color: '#0031' }…