付延余
2022-04-28 b262be766fd1dbcb936d9dda5b5e802de4d27e59
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;
}