.kb-editor {
  ul[data-type='task_list'] {
    list-style: none;
    margin-left: 0;
    padding: 0;
  }

  li[data-checked='true'] {
    text-decoration: line-through;
  }

  li[data-checked] {
    display: flex;
    margin-top: 0.25em;
    margin-bottom: 0.25em;

    > label {
      flex: 0 0 auto;
      margin-right: 0.5rem;
      user-select: none;

      > input[type='checkbox'] {
        margin-right: 8px;
        cursor: pointer;
      }

      > input[type='checkbox']:checked + span {
        text-decoration: line-through;
        color: #888;
      }
    }

    > div {
      flex: 1 1 auto;
    }
    > div > p {
      margin: 0;
    }
  }
}
