1
Fork 0
mirror of https://github.com/Steffo99/festa.git synced 2024-10-16 15:07:27 +00:00
festa/styles/components/form-monorow.css

23 lines
366 B
CSS
Raw Normal View History

2022-06-06 00:08:12 +00:00
.form-monorow {
max-width: 600px;
margin-left: auto;
margin-right: auto;
display: flex;
flex-direction: row;
gap: 4px;
justify-content: center;
align-items: stretch;
2022-06-06 00:08:12 +00:00
}
.form-monorow > input {
2022-06-06 00:08:12 +00:00
flex-grow: 1;
}
.form-monorow > button, .form-monorow > input[type="submit"] {
2022-06-06 00:08:12 +00:00
flex-grow: 0;
width: 40px;
height: 40px;
2022-06-06 00:08:12 +00:00
}