SimplifiedItemsTree.module.scss 421 B

1234567891011121314151617181920212223242526
  1. .simplified-items-tree {
  2. display: flex;
  3. flex-direction: column;
  4. gap: 4px;
  5. }
  6. .simplified-tree-item {
  7. padding: 8px 12px;
  8. cursor: pointer;
  9. border-radius: 4px;
  10. transition: background-color 0.2s;
  11. &:hover {
  12. background-color: rgba(0, 0, 0, 0.05);
  13. }
  14. &[aria-current='page'] {
  15. font-weight: 600;
  16. background-color: rgba(0, 123, 255, 0.1);
  17. }
  18. }
  19. .item-path {
  20. font-size: 14px;
  21. color: inherit;
  22. }