From d9e757105157853db397d6cd60a67a842ae32f24 Mon Sep 17 00:00:00 2001 From: KCM Date: Sat, 28 Mar 2026 12:01:07 -0500 Subject: [PATCH 1/2] chore: sync editor component and styles from @knighted/develop --- src/components/App.jsx | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/components/App.jsx diff --git a/src/components/App.jsx b/src/components/App.jsx new file mode 100644 index 0000000..6847e79 --- /dev/null +++ b/src/components/App.jsx @@ -0,0 +1 @@ +const Button = () => \ No newline at end of file From 7c887e0bee36a08c9fa1014d258a24d08c1a445e Mon Sep 17 00:00:00 2001 From: KCM Date: Sat, 28 Mar 2026 12:01:08 -0500 Subject: [PATCH 2/2] chore: sync editor component and styles from @knighted/develop --- src/styles/app.css | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/styles/app.css diff --git a/src/styles/app.css b/src/styles/app.css new file mode 100644 index 0000000..a247d4d --- /dev/null +++ b/src/styles/app.css @@ -0,0 +1,29 @@ +.counter-button { + margin: 0; + padding: 0.75rem 1rem; + border: 1px solid #3558b8; + border-radius: 0.5rem; + background: #e9efff; + color: #1a2a52; + font-weight: 600; + cursor: pointer; + transition: background-color 120ms ease; +} + +.counter-button:hover { + background: #dce6ff; +} + +.counter-button[data-active='true'] { + background: #3558b8; + color: #fff; +} + +.counter-button.is-even { + border-style: dashed; +} + +.counter-button:focus-visible { + outline: 2px solid #6a84d8; + outline-offset: 2px; +}