tonybaloney / wily

A Python application for tracking, reporting on timing and complexity in Python code
Apache License 2.0
1.2k stars 58 forks source link

Fix HTML report table not being scrollable (fix #186) #208

Closed devdanzin closed 1 year ago

devdanzin commented 1 year ago

As shown in #186, the table containing metrics in HTML report doesn't scroll horizontally, so we can't see some metrics when displaying too many of them. This trivial PR changes the CSS so that the table has overflow set to scroll instead of hidden.

codecov-commenter commented 1 year ago

Codecov Report

Merging #208 (e40c7f4) into master (acf39d2) will not change coverage. The diff coverage is n/a.

@@           Coverage Diff           @@
##           master     #208   +/-   ##
=======================================
  Coverage   95.46%   95.46%           
=======================================
  Files          26       26           
  Lines        1346     1346           
  Branches      287      287           
=======================================
  Hits         1285     1285           
  Misses         37       37           
  Partials       24       24           
tonybaloney commented 1 year ago

Thanks!