Skip to content

Commit 024d5fa

Browse files
committed
Streamline & simplify E2E report
1 parent 063027c commit 024d5fa

25 files changed

+1298
-4011
lines changed

e2e-report/app/globals.css

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
@tailwind base;
2+
@tailwind components;
3+
@tailwind utilities;
4+
5+
@layer base {
6+
@font-face {
7+
font-family: Mulish;
8+
src: url(/MulishVar-latin.woff2) format("woff2");
9+
unicode-range: U+5, U+20, U+21, U+24, U+25, U+26, U+27, U+2B-2E, U+30-3A, U+3F, U+41-5A, U+61-7A, U+D7, U+2019, U+201C,
10+
U+201D;
11+
font-weight: 200 900;
12+
font-display: swap;
13+
}
14+
}
15+
16+
@layer components {
17+
.table.issues-table :where(td) {
18+
@apply py-1.5;
19+
}
20+
21+
.table.issues-table :where(td:nth-last-child(-n+4)) {
22+
@apply text-center;
23+
}
24+
25+
.table.issues-table :where(td:nth-last-child(-n+3)) {
26+
@apply text-neutral-content;
27+
}
28+
29+
.stat-value {
30+
@apply font-bold;
31+
@apply text-3xl;
32+
}
33+
}

0 commit comments

Comments
 (0)