2019-11-04 12:55:20 +00:00
|
|
|
const Stylesheet = require(`${appPath}/core/stylesheet`);
|
2019-01-24 14:03:01 +00:00
|
|
|
|
2019-11-04 12:55:20 +00:00
|
|
|
module.exports = new Stylesheet([
|
2019-11-11 10:04:49 +00:00
|
|
|
`${appPath}/common/css/spacing.css`,
|
|
|
|
`${appPath}/common/css/misc.css`,
|
2019-01-24 14:03:01 +00:00
|
|
|
`${appPath}/common/css/layout.css`,
|
2019-02-06 09:53:12 +00:00
|
|
|
`${appPath}/common/css/report.css`,
|
2019-01-24 14:03:01 +00:00
|
|
|
`${__dirname}/style.css`])
|
|
|
|
.mergeStyles();
|