Compare commits
2 Commits
19c22e6ae8
...
5a4d4a7a04
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5a4d4a7a04 | ||
|
|
c9d46be196 |
@@ -1,12 +1,17 @@
|
||||
.prospect-grid {
|
||||
/* Default card width range. Override via a modifier class on ProspectGrid. */
|
||||
--pc-min-width: 200px;
|
||||
--pc-max-width: 350px;
|
||||
--pc-min-width: 320px;
|
||||
--pc-max-width: 320px;
|
||||
|
||||
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;
|
||||
grid-template-columns: repeat(auto-fit, minmax(var(--pc-min-width), 1fr));
|
||||
justify-items: center;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.prospect-grid > * {
|
||||
width: 100%;
|
||||
max-width: var(--pc-max-width);
|
||||
}
|
||||
@@ -28,7 +28,7 @@
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="DartSassBuilder" Version="1.1.0" />
|
||||
<PackageReference Include="AspNetCore.SassCompiler" Version="1.81.0" />
|
||||
<PackageReference Include="MailKit" Version="4.4.0" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.3" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.3">
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
// Breakpoints matching typical Bootstrap breakpoints
|
||||
$breakpoints: (
|
||||
"sm": 576px,
|
||||
"md": 768px,
|
||||
"lg": 992px,
|
||||
"xl": 1200px
|
||||
sm: 576px,
|
||||
md: 768px,
|
||||
lg: 992px,
|
||||
xl: 1200px
|
||||
);
|
||||
|
||||
// Spacer values (1 to 5) mapped to rem
|
||||
|
||||
Reference in New Issue
Block a user