app.scss 412 B

1234567891011121314151617181920212223
  1. .footer-fixed {
  2. position: fixed;
  3. z-index: 999;
  4. width: 100%;
  5. bottom: 0;
  6. left: 0;
  7. }
  8. .footer-fixed.foot-pb {
  9. padding-bottom: calc(env(safe-area-inset-bottom) / 2);
  10. }
  11. .theme-bg-color {
  12. background-color: #5a3ee8;
  13. }
  14. .theme-color {
  15. color: #5a3ee8;
  16. }
  17. .text-cut-2 {
  18. overflow: hidden;
  19. text-overflow: ellipsis;
  20. display: -webkit-box;
  21. -webkit-line-clamp: 2;
  22. -webkit-box-orient: vertical;
  23. }