common.css 403 Bytes
Newer Older
李嘉林 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
.text-overflow {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.text-overflow2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.flex {
  display: flex;
}
李嘉林 committed
18 19 20 21 22 23 24 25 26 27

.flex-btw {
  justify-content: space-between;
  align-items: center;
}

.flex-cen {
  justify-content: center;
  align-items: center;
}