Skip to content

Commit

Permalink
Feature: Change footer text color to match the default (#3969)
Browse files Browse the repository at this point in the history
## Because
- The current text color of the footer is both inaccessible and also
just doesn't match the rest of TOP


## This PR
- Changes it to the default text colors


## Issue
Closes #3963 

## Pull Request Requirements
<!-- Replace the whitespace between the square brackets with an 'x',
e.g. [x]. After you create the PR, they will become checkboxes that you
can click on. -->
- [x] I have thoroughly read and understand [The Odin Project
Contributing
Guide](https://github.com/TheOdinProject/theodinproject/blob/main/CONTRIBUTING.md)
- [x] The title of this PR follows the `keyword: brief description of
change` format, using one of the following keywords:
  - `Feature` - adds new or amends existing user-facing behavior
- `Chore` - changes that have no user-facing value, refactors,
dependency bumps, etc
  - `Fix` - bug fixes
-   [x] The `Because` section summarizes the reason for this PR
- [x] The `This PR` section has a bullet point list describing the
changes in this PR
- [x] I have verified all tests and linters pass after making these
changes.
- [x] If this PR addresses an open issue, it is linked in the `Issue`
section
  • Loading branch information
Asartea authored Jul 14, 2023
1 parent b287810 commit 6d888f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/shared/_footer.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
</div>
</div>
<div class="mt-16 border-t border-gray-900/10 dark:border-white/10 pt-8 sm:mt-20 lg:mt-24">
<p class="text-xs leading-5 text-gray-400">&copy; <%= Time.current.year %> The Odin Project. All rights reserved.</p>
<p class="text-xs leading-5 text-gray-600 dark:text-gray-300">&copy; <%= Time.current.year %> The Odin Project. All rights reserved.</p>
</div>
</div>
</footer>

0 comments on commit 6d888f4

Please sign in to comment.