Skip to content

Commit 797cdbb

Browse files
authored
Merge pull request #40 from YangChenyuan/main
Add benchmark icons to leaderboard tabs
2 parents 91f7589 + ce98e4f commit 797cdbb

File tree

4 files changed

+13
-0
lines changed

4 files changed

+13
-0
lines changed
41.5 KB
Loading
56.5 KB
Loading

leaderboard/css/main.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,8 @@ body::before {
261261
}
262262

263263
.tab-button {
264+
display: flex;
265+
align-items: center;
264266
padding: var(--spacing-sm) var(--spacing-lg);
265267
border: none;
266268
background: transparent;
@@ -284,6 +286,15 @@ body::before {
284286
box-shadow: var(--shadow-md);
285287
}
286288

289+
.tab-icon {
290+
width: 24px;
291+
height: 24px;
292+
object-fit: contain;
293+
vertical-align: middle;
294+
margin-right: var(--spacing-xs);
295+
border-radius: var(--radius-sm);
296+
}
297+
287298
/* Leaderboard Table */
288299
.leaderboard-section {
289300
margin-bottom: var(--spacing-2xl);

leaderboard/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,11 @@ <h1 class="hero-title">Verus Proof Synthesis Leaderboard</h1>
9494
<!-- Benchmark Tabs -->
9595
<div class="tabs">
9696
<button class="tab-button active" data-benchmark="verusage-bench">
97+
<img src="assets/verusage-logo.png" alt="VeruSAGE" class="tab-icon">
9798
VeruSAGE-Bench (849)
9899
</button>
99100
<button class="tab-button" data-benchmark="verus-bench">
101+
<img src="assets/autoverus-logo.png" alt="Verus" class="tab-icon">
100102
Verus-Bench (150)
101103
</button>
102104
</div>

0 commit comments

Comments
 (0)