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-11-11 10:04:49 +00:00
|
|
|
`${appPath}/common/css/email.css`])
|
2019-01-24 14:03:01 +00:00
|
|
|
.mergeStyles();
|
2019-11-11 10:04:49 +00:00
|
|
|
|