Skip to content

Commit 9d19cb6

Browse files
committed
Revert "Update template.html.jinja: add padding"
This reverts commit cb80a5f.
1 parent cb80a5f commit 9d19cb6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

template.html.jinja

+1-2
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,8 @@
5757
document.querySelectorAll('.progress-bar').forEach(progressBar => {
5858
const textWidth = progressBar.scrollWidth;
5959
const barWidth = progressBar.offsetWidth;
60-
const padding = 6;
6160
62-
if (barWidth < textWidth + padding) {
61+
if (barWidth < textWidth) {
6362
progressBar.classList.add('low');
6463
} else {
6564
progressBar.classList.remove('low');

0 commit comments

Comments
 (0)