diff options
| author | Akshay Nair <phenax5@gmail.com> | 2023-08-11 21:40:54 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2023-08-11 21:50:20 +0530 |
| commit | 845d503bb16cb5046a4fec6d046b7b527a080187 (patch) | |
| tree | a9f8fdf4510ad4d61e8d105065be9071946e2bdf /examples/todo-list | |
| parent | 5a9942fde65787b35d4eb8e3441af6fe68819612 (diff) | |
| download | css-everything-845d503bb16cb5046a4fec6d046b7b527a080187.tar.gz css-everything-845d503bb16cb5046a4fec6d046b7b527a080187.zip | |
chore: adds prettier
Diffstat (limited to 'examples/todo-list')
| -rw-r--r-- | examples/todo-list/style.css | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/examples/todo-list/style.css b/examples/todo-list/style.css index aeffde5..7533210 100644 --- a/examples/todo-list/style.css +++ b/examples/todo-list/style.css @@ -15,14 +15,11 @@ body { --cssx-on-click: update( todo-container, --todo-list, - list-append( - var(--todo-list), - tuple(get-attr(input-field, value), false) - ) + list-append(var(--todo-list), tuple(get-attr(input-field, value), false)) ); } #submit-btn::after { - content: "Submit"; + content: 'Submit'; } #todo-list { @@ -30,9 +27,7 @@ body { } #todo-item { - } #todo-item::after { content: var(--todo-item); } - |
