Force 4-column layout for How It Works steps
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
057931f02a
commit
7c3f825c80
|
|
@ -444,11 +444,14 @@
|
|||
|
||||
.steps-row {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 20px;
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
@media (max-width: 640px) {
|
||||
.steps-row { grid-template-columns: repeat(2, 1fr); }
|
||||
}
|
||||
|
||||
.step {
|
||||
text-align: center;
|
||||
|
|
|
|||
Loading…
Reference in New Issue