zhangxiaoxu123
2022-09-14 77536cfa95b1e3c5e60f94dce3a53aa2e93f121a
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;
}