1
0
mirror of https://github.com/Stirling-Tools/Stirling-PDF.git synced 2024-07-02 23:40:40 +02:00

Fixed issue where the last feature expands to fill the whole last row

This commit is contained in:
Saud Fatayerji 2023-02-04 17:36:20 +03:00
parent f6feb7a7e7
commit ae50611acc

View File

@ -6,18 +6,14 @@
<style>
.features-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
row-gap: 25px;
column-gap: 30px;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(21rem, 3fr));
gap: 25px 30px;
}
.feature-card {
border: 1px solid rgba(0,0,0,.125);
border-radius: 0.25rem;
padding: 1.25rem;
width: 21rem;
flex-grow: 1;
}
</style>