Left-align About page text instead of justifying - #199
Merged
Conversation
Justified text with inter-word spacing produced uneven gaps ("rivers") in the
About page paragraphs; left-align reads cleanly.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
The
/aboutpage paragraphs usedtext-align: justify; text-justify: inter-word;, which produces uneven word spacing ("rivers") — especially on narrower columns. Switch totext-align: leftfor clean, readable text.🤖 Generated with Claude Code
Greptile Summary
This PR updates the styling of the
/aboutpage paragraphs to use left-aligned text instead of justified text, removing thetext-justify: inter-wordproperty as well.text-align: justify+text-justify: inter-wordwithtext-align: leftin the__textmodifier rule inAbout.scss, eliminating the "rivers" of whitespace that justified text produces on narrow columns.Confidence Score: 5/5
This is a safe, minimal CSS-only change with no logic or data implications.
The change removes two text-alignment declarations and replaces them with a single standard
text-align: left, which is the browser default for LTR text. The diff is one file, three lines, and the change is cosmetic-only with no functional side effects.No files require special attention.
Important Files Changed
text-align: justifyandtext-justify: inter-word, replacing them withtext-align: leftto eliminate uneven word spacing on the About page.Reviews (1): Last reviewed commit: "Left-align About page text instead of ju..." | Re-trigger Greptile