From 845d503bb16cb5046a4fec6d046b7b527a080187 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Fri, 11 Aug 2023 21:40:54 +0530 Subject: chore: adds prettier --- examples/counter/index.html | 6 +++--- examples/counter/style.css | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'examples/counter') diff --git a/examples/counter/index.html b/examples/counter/index.html index 158ee16..9aa89d2 100644 --- a/examples/counter/index.html +++ b/examples/counter/index.html @@ -1,9 +1,9 @@ - + Counter example - - + + diff --git a/examples/counter/style.css b/examples/counter/style.css index 9cf50e0..b60785f 100644 --- a/examples/counter/style.css +++ b/examples/counter/style.css @@ -1,6 +1,6 @@ body { --cssx-children: container todo-container; - --cssx-on-load: js(console.log("what have we done?!")); + --cssx-on-load: js(console.log('what have we done?!')); } #container { @@ -11,7 +11,7 @@ body { #counter { } #counter::before { - content: "Count: " var(--count); + content: 'Count: ' var(--count); } #btn-increment { @@ -22,5 +22,5 @@ body { --cssx-on-click: update(container, --count, calc(var(--count) + 1)); } #btn-increment::after { - content: "Increment"; + content: 'Increment'; } -- cgit v1.3.1