Remove color styling from server count display in Dashboard

This commit is contained in:
headlessdev 2025-04-19 13:24:08 +02:00
parent b835ded157
commit 016c9a2562

View File

@ -90,7 +90,7 @@ export default function Dashboard() {
<Server className="h-6 w-6 text-rose-600" /> <Server className="h-6 w-6 text-rose-600" />
</div> </div>
<div> <div>
<div className="text-3xl font-bold text-rose-600">{serverCountNoVMs}</div> <div className="text-3xl font-bold">{serverCountNoVMs}</div>
<p className="text-sm text-muted-foreground">Physical Servers</p> <p className="text-sm text-muted-foreground">Physical Servers</p>
</div> </div>
</div> </div>
@ -101,7 +101,7 @@ export default function Dashboard() {
<Network className="h-6 w-6 text-violet-600" /> <Network className="h-6 w-6 text-violet-600" />
</div> </div>
<div> <div>
<div className="text-3xl font-bold text-violet-600">{serverCountOnlyVMs}</div> <div className="text-3xl font-bold">{serverCountOnlyVMs}</div>
<p className="text-sm text-muted-foreground">Virtual Servers</p> <p className="text-sm text-muted-foreground">Virtual Servers</p>
</div> </div>
</div> </div>