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 fd86598 commit 92bb2eaCopy full SHA for 92bb2ea
src/Playground.res
@@ -1755,14 +1755,14 @@ let make = (~versions: array<string>) => {
1755
1756
<div className="inline-flex items-center gap-2">
1757
{if problemCounts["errors"] > 0 {
1758
- <span className="text-fire bg-fire-100 px-0.5">
+ <span className="inline-block min-w-4 text-fire bg-fire-100 px-0.5">
1759
{problemCounts["errors"]->React.int}
1760
</span>
1761
} else {
1762
React.null
1763
}}
1764
{if problemCounts["warnings"] > 0 {
1765
- <span className="text-orange bg-orange-15 px-0.5">
+ <span className="inline-block min-w-4 text-orange bg-orange-15 px-0.5">
1766
{problemCounts["warnings"]->React.int}
1767
1768
0 commit comments