We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 306d537 commit 3d2ce3aCopy full SHA for 3d2ce3a
app/components/compare/FacetRow.vue
@@ -41,13 +41,13 @@ function getBarWidth(value: FacetValue | null | undefined): number {
41
function getStatusClass(status?: FacetValue['status']): string {
42
switch (status) {
43
case 'good':
44
- return 'text-emerald-400'
+ return 'bg-emerald-400 text-white px-3 py-0.5 rounded-xl'
45
case 'info':
46
- return 'text-blue-400'
+ return 'bg-blue-400 text-white px-3 py-0.5 rounded-xl'
47
case 'warning':
48
- return 'text-amber-400'
+ return 'bg-amber-400 px-3 py-0.5 rounded-xl'
49
case 'bad':
50
- return 'text-red-400'
+ return 'bg-red-400 text-white px-3 py-0.5 rounded-xl'
51
case 'muted':
52
return 'text-fg-subtle'
53
default:
0 commit comments