1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-04 18:29:39 +02:00
Oinktube/node_modules/style-mod/test/test.html
2022-06-30 12:23:35 -03:00

17 lines
406 B
HTML

<!doctype html>
<meta charset=utf8>
<script>var exports = {}</script>
<script src="../dist/style-mod.js"></script>
<p>Hello</p>
<script>
let mod = new StyleModule({
one: {color: "green"},
two: {textDecoration: "underline",
"&:hover": {textDecoration: "overline"}}
})
StyleModule.mount(document, mod)
document.body.className = mod.one
document.querySelector("p").className = mod.two
</script>