Refactor ProspectGrid styles: remove custom width variables and simplify grid layout for improved clarity
All checks were successful
Build And Push Dev Docker Image / docker (push) Successful in 1m23s

This commit is contained in:
a.beging@eas-solutions.de
2026-04-21 10:55:26 +02:00
parent 5a4d4a7a04
commit 40f0213a73
2 changed files with 3 additions and 12 deletions

View File

@@ -1,17 +1,8 @@
.prospect-grid {
/* Default card width range. Override via a modifier class on ProspectGrid. */
--pc-min-width: 320px;
--pc-max-width: 320px;
display: grid;
gap: 1rem;
width: 100%;
grid-template-columns: repeat(auto-fit, minmax(var(--pc-min-width), 1fr));
justify-items: center;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
justify-content: center;
align-items: stretch;
}
.prospect-grid > * {
width: 100%;
max-width: var(--pc-max-width);
}

View File

@@ -10,7 +10,7 @@
<i class="fa-solid fa-sort"></i>
</Button>
<Button Color="Color.Primary"
<Button Color="Color.Info"
Width="Width.Px(50)"
Height="Height.Px(50)"
title="Filtern"