diff options
author | 2024-03-19 16:40:36 +0800 | |
---|---|---|
committer | 2024-03-19 16:40:36 +0800 | |
commit | 8dd3225893aad4dba14145a017903f637579f46b (patch) | |
tree | 8d2e636a8a60f0c274ec8975db1208b481220924 /pydis_site/static | |
parent | Fix typo in timeline.css CSS-variable (diff) |
Center align the timeline line (container ::before pseudoelement)
Diffstat (limited to 'pydis_site/static')
-rw-r--r-- | pydis_site/static/css/home/timeline.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/static/css/home/timeline.css b/pydis_site/static/css/home/timeline.css index d708a89b..48e0de11 100644 --- a/pydis_site/static/css/home/timeline.css +++ b/pydis_site/static/css/home/timeline.css @@ -28,7 +28,7 @@ content: ''; position: absolute; top: 0; - left: 50%; + left: calc(50% - 2px); height: 100%; width: 4px; background-color: var(--accent); |