Refactor ProspectContainer and ProspectGrid: adjust layout styles and add grid class for improved responsiveness
All checks were successful
Build And Push Dev Docker Image / docker (push) Successful in 1m32s

This commit is contained in:
troogs
2026-04-21 05:48:55 +02:00
parent d1852f28c8
commit 19c22e6ae8
3 changed files with 19 additions and 7 deletions

View File

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