houdini/app/javascript/legacy/components/styles/render-styles.js

10 lines
220 B
JavaScript
Raw Normal View History

2019-11-06 20:36:28 +00:00
// License: LGPL-3.0-or-later
module.exports = _ => {
var styleTag = document.createElement('style')
return styles => {
styleTag.innerHTML = styles
document.querySelector('head').appendChild(styleTag)
}
}