diff options
author | 2024-03-19 16:35:05 +0800 | |
---|---|---|
committer | 2024-03-19 16:35:05 +0800 | |
commit | 60095ef952444b5b5cb98c45f8b62f71789d5b91 (patch) | |
tree | 036578250612d5aee02287f889a1c02216d54894 /pydis_site/static | |
parent | Fix conflicts (diff) |
Fix typo in timeline.css CSS-variable
Unfortunately there is a merge commit (with merge conflicts) in between
this change and the timeline commit before it. Perhaps in a few years
time when I'm more confident in rebasing I'll be able to amend that
commit to include this fix.
Diffstat (limited to 'pydis_site/static')
-rw-r--r-- | pydis_site/static/css/home/timeline.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pydis_site/static/css/home/timeline.css b/pydis_site/static/css/home/timeline.css index b8fa02c9..d708a89b 100644 --- a/pydis_site/static/css/home/timeline.css +++ b/pydis_site/static/css/home/timeline.css @@ -2,6 +2,7 @@ --background-color: rgb(232, 239, 245); --accent: hsl(205, 38%, 89%); --icon-border-color: white; + --icon-color: white; --content-background-color: white; } @@ -60,7 +61,7 @@ width: 60px; box-shadow: 0 0 0 4px var(--icon-border-color),inset 0 2px 0 rgba(0,0,0,.08),0 3px 0 4px rgba(0,0,0,.05); - color: var(--icon-outline-color); + color: var(--icon-color); font-size: 1.5em; |