Create events on small screens
On small screens, I get a layout issue due to the Status
buttons at the bottom.
Could you use something like that (by adding flex-wrap: wrap
)?
.field.has-addons {
display: flex;
flex-wrap: wrap; /* This line added */
justify-content: flex-start;
}