8 lines
180 B
CSS
8 lines
180 B
CSS
.form {
|
|
display: grid;
|
|
gap: var(--Spacing-x2);
|
|
grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
|
|
padding-bottom: var(--Spacing-x3);
|
|
width: min(600px, 100%);
|
|
}
|