bevacqua/woofmark

Ability to change the position of the controls

fresheneesz opened this issue · 1 comments

The controls appear on the bottom by default. This seems weird to me. It would be nice to have the option of putting those controls above the text area.

I think the best solution is to just use CSS. Make the container a flexbox and then set the CSS order property for the controls:

.wk-container {
  display: flex;
  flex-direction: column;
}

.wk-commands {
  order: -1;
}