This commit is contained in:
Shan Carter
2017-03-10 11:10:04 -08:00
parent 8807bb1778
commit feea10ed4e
26 changed files with 6340 additions and 252 deletions
+10
View File
@@ -0,0 +1,10 @@
import base from "./styles-base.css";
import layout from "./styles-layout.css";
import article from "./styles-article.css";
import code from "./styles-code.css";
import print from "./styles-print.css";
let s = document.createElement("style");
s.textContent = base + layout + code + print;
document.querySelector("head").appendChild(s);
export default s;