方诺官网改正版
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

22 行
556 B

  1. .report-chart {
  2. @apply relative;
  3. &:before {
  4. content: "";
  5. height: 93%;
  6. background: linear-gradient(to right, white, #ffffffde, transparent);
  7. @apply w-12 left-0 top-0 ml-10 absolute;
  8. @media (max-width: $sm) {
  9. height: 85%;
  10. }
  11. }
  12. &:after {
  13. content: "";
  14. height: 93%;
  15. background: linear-gradient(to right, transparent, #ffffffde, white);
  16. @apply w-12 right-0 top-0 absolute mr-2;
  17. @media (max-width: $sm) {
  18. height: 85%;
  19. }
  20. }
  21. }