index.less 328 Bytes
Newer Older
wuhao's avatar
wuhao committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
.items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 6px;
  cursor: pointer;
  > i {
    flex: 1;
    overflow: hidden;
    font-style: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  > span {
    width: 25px;
  }
  &:hover {
    background-color: #f9f9f9;
  }
}