付延余
2022-04-27 bc1417d555b6e78627e04b3b854ccacca87eed17
1
2
3
4
5
6
7
8
9
10
11
@mixin overflow-y() {
   overflow-y: auto;
   touch-action: pan-y;
   -webkit-overflow-scrolling: touch;
}
 
@mixin ellipsis() {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}