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.
Why
Multiple users of the website found issue with the lists being highly dense. There was also issue found with the lists having too much empty space to their left.
What
Adds a small amount of spacing between the list items. Lessens the empty space on left of lists (except for the front page, has a lot of custom styling that overrides defaults; it will get its day in contribution when I eventually work on the front / landing page redesign thats been in the issues for years.)
How
Uses flexbox to add a gap to the
<ul>
and<ol>
elements. Also decreases the left padding of those same elements.Try
1.opt Add my repository for the site if you haven't before:
git remote add trialdragon [email protected]:TrialDragon/bevy-website.git
git fetch trialdragon
git switch trialdragon/improve_list_readability
zola serve --open
4.opt If you need to install Zola, see https://www.getzola.org/documentation/getting-started/installation/