menu-editor.scss 556 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. @import "variables";
  2. nav,
  3. .menu {
  4. .item {
  5. > .text {
  6. position: relative;
  7. > .fa-pen {
  8. position: absolute;
  9. top: 0;
  10. right: 0;
  11. bottom: 0;
  12. width: 20px;
  13. display: flex;
  14. justify-content: center;
  15. align-items: center;
  16. &:hover {
  17. color: $color-secondary-b-2;
  18. background-color: $color-secondary-b-4;
  19. }
  20. }
  21. &.edit {
  22. font-weight: 700;
  23. color: $color-secondary-b-2;
  24. background-color: $color-secondary-b-3;
  25. }
  26. }
  27. &.hide {
  28. text-decoration: line-through;
  29. font-style: italic;
  30. }
  31. }
  32. }