_sidebar.scss 288 B

123456789101112131415161718192021
  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. &:hover{
  15. &::after{
  16. content: "D";
  17. }
  18. }
  19. }
  20. }
  21. }