[data-component~="views/notes/form"] {
  display: flex;
  flex-direction: column;
  height: 100%;
  form {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1rem;
    textarea {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    #other-fields {
      display: flex;
      flex-wrap: nowrap;
      gap: 1rem;
      * {
        width: 100%;
      }
    }
    input[type=submit] {
      display: none;
    }
  }
}