Lsx.module.scss 378 B

1234567891011121314151617181920212223242526
  1. .lsx :global {
  2. page-list-ul > li > a:not(:hover) {
  3. text-decoration: none;
  4. }
  5. .lsx-page-not-exist {
  6. opacity: 0.6;
  7. }
  8. // workaround
  9. // https://stackoverflow.com/a/57667536
  10. .lsx-blink {
  11. & :local {
  12. animation: lsx-fadeIn 1s ease 0s infinite alternate;
  13. }
  14. }
  15. }
  16. @keyframes lsx-fadeIn {
  17. 0% {
  18. opacity: 0.2;
  19. }
  20. 100% {
  21. opacity: 0.9;
  22. }
  23. }