8 lines
128 B
CSS
8 lines
128 B
CSS
|
.form {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
gap: var(--gap);
|
||
|
max-width: 300px;
|
||
|
margin-top: var(--gap);
|
||
|
}
|