Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

bump-link.scss 424 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  1. // Arrow links
  2. .Bump-link-symbol {
  3. display: inline-block;
  4. transition: $transition-time / 2;
  5. transform: translateX(0);
  6. }
  7. .Bump-link:hover .Bump-link-symbol {
  8. transform: translateX(3px);
  9. }
  10. .Bump-link--hover .Bump-link-symbol {
  11. color: inherit;
  12. opacity: 0;
  13. transition: $transition-time / 2;
  14. transform: translateX(0);
  15. }
  16. .Bump-link--hover:hover .Bump-link-symbol {
  17. opacity: 1;
  18. transform: translateX(3px);
  19. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...