付延余
2022-04-29 41d6da7f5f8f0ce37c3521f6c4d639ab77ed9aac
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;
}