feat: show percent on hover

This commit is contained in:
Cory Dransfeldt 2024-07-03 13:12:43 -07:00
parent 84b92af08f
commit 44cd28b408
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "19.9.13", "version": "19.9.14",
"description": "The source for my personal site. Built using 11ty.", "description": "The source for my personal site. Built using 11ty.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -1,5 +1,5 @@
{% if percentage %} {% if percentage %}
<div class="progress-bar-wrapper"> <div class="progress-bar-wrapper" title="{{ percentage }}">
<div style="width:{{ percentage }}" class="progress-bar"></div> <div style="width:{{ percentage }}" class="progress-bar"></div>
</div> </div>
{% endif %} {% endif %}