rewind: make values directly editable and collapse to a pure astro page - #38
Merged
Conversation
CMJanina
force-pushed
the
t3code/b0d068dd
branch
from
September 7, 2026 13:25
fbfdb51 to
a60b304
Compare
CMJanina
force-pushed
the
t3code/b0d068dd
branch
from
September 7, 2026 13:42
a60b304 to
79d09cc
Compare
🔄 Force-push range-diff
Show range-diff1: a68a1c1 = 1: a68a1c1 rewind: make card values directly editable, remove settings inputs
2: f0e636b = 2: f0e636b rewind: collapse component into a pure astro page
3: 3e0de9b = 3: 3e0de9b rewind: factor shared text-align, drop redundant width on flex items
4: a60b304 ! 4: 79d09cc rewind: add hint that values are click-to-edit
@@ src/pages/rewind.astro: import Layout from "../layouts/Layout.astro";
<Layout title="Rewind" screenshotOptions={{ width: 1000 }}>
<HeaderLogo slot="header">Rewind</HeaderLogo>
<main>
-+ <p class="hint">Click on the text to edit it.</p>
++ <p>Click on the text to edit it.</p>
<div class="sexrewind column">
<div class="column">
<span class="sextext1">You had sex</span>
@@ src/pages/rewind.astro: import Layout from "../layouts/Layout.astro";
font-size: min(12pt, 1.5vw);
}
-+ .hint {
++ p {
+ text-align: center;
+ color: gray;
+ padding-bottom: 0.5em; |
Open
pixelcmtd
approved these changes
Sep 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Rewind's card values are now inline-editable via contenteditable (no separate settings input boxes), and the standalone Preact
Rewind.tsxcomponent + CSS module are gone — the card is inlined into a purerewind.astropage with no JS interactivity.