vue-context icon indicating copy to clipboard operation
vue-context copied to clipboard

Separator item

Open patarapolw opened this issue 4 years ago • 0 comments
trafficstars

Description

Separator item is missing from official. However, I can easily create it with CSS. Also works with CSS scoped.

<vue-context>
  <li class="separator"><a></a></li>
</vue-context>
.v-context {
  li.separator {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;

    a {
      background-color: lightgray;
      height: 1px;
      width: calc(100% - 1rem);
      padding: 0;
    }
  }
}

Version

[email protected]

Firefox for Ubuntu 84.0 on Xubuntu 20.04

patarapolw avatar Jan 08 '21 06:01 patarapolw