Skip to content

Commit

Permalink
Fix pagination column holders to not display on firefox and other
Browse files Browse the repository at this point in the history
devices(line-height doesn't affect display:table-cell).
  • Loading branch information
eigood committed Sep 16, 2024
1 parent ba888fb commit 6715995
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app.css
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ header .enl-stat, header .res-stat {
line-height:20px;
vertical-align:middle;
}
.stat-row.for-sizing > * {
.stat-row.for-sizing * {
line-height:0;
overflow:hidden;
}
Expand Down
10 changes: 5 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ <h4 class="stat-header">
</template>
<template id="stat-list-row">
<li class='stat-row' data-value="0">
<span class="stat-position"></span>
<span class="stat-reward fa-solid fa-medal badge"></span>
<div class="stat-value-container">
<span><span class="stat-position"></span></span>
<span><span class="stat-reward fa-solid fa-medal badge"></span></span>
<span><div class="stat-value-container">
<dfn class="stat-value"></dfn>
<span class="rollover"></span>
</div>
<span class="agent"></span>
</div></span>
<span><span class="agent"></span></span>
</li>
</template>
<div id='iwwc-app' class='loading'>
Expand Down

0 comments on commit 6715995

Please sign in to comment.