update interface button styles

This commit is contained in:
2023-07-28 02:15:00 +02:00
parent aff5e643ac
commit 12c07c83b3
2901 changed files with 1369600 additions and 41 deletions

17
node_modules/style-mod/test/test.html generated vendored Normal file
View File

@ -0,0 +1,17 @@
<!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>