_sidebar.scss 597 B

123456789101112131415161718192021222324252627282930313233
  1. .sidebar-right{
  2. position: fixed;
  3. width: 20%;
  4. height: 100%;
  5. top: 0;
  6. right: 0;
  7. display: flex;
  8. ul{
  9. margin: auto;
  10. text-align: right;
  11. margin-right: 20px;
  12. a{
  13. color: grey;
  14. position: relative;
  15. &:hover{
  16. li{
  17. position: relative;
  18. &::after{
  19. content: " ";
  20. top: 7px;
  21. right: -13px;
  22. display: block;
  23. position: absolute;
  24. background-color: grey;
  25. border-radius: 5px;
  26. width: 7px;
  27. height: 7px;
  28. }
  29. }
  30. }
  31. }
  32. }
  33. }