zhangxiaoxu123456
2022-05-05 87cbee9b14970d997c1e5c54b5fef4d04369c968
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;
}