mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-23 15:14:23 +00:00
21 lines
302 B
CSS
21 lines
302 B
CSS
|
.form-monorow {
|
||
|
max-width: 600px;
|
||
|
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
gap: 4px;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.form-monorow *:first-child {
|
||
|
flex-grow: 1;
|
||
|
}
|
||
|
|
||
|
.form-monorow *:last-child {
|
||
|
flex-grow: 0;
|
||
|
}
|