TreeItemForModal.module.scss 463 B

12345678910111213141516171819202122232425
  1. @use '@growi/core-styles/scss/bootstrap/init' as bs;
  2. .tree-item-for-modal :global {
  3. li {
  4. min-height: 36px;
  5. }
  6. }
  7. // == Colors
  8. @include bs.color-mode(light) {
  9. .tree-item-for-modal :global {
  10. .list-group-item-action {
  11. --bs-list-group-active-bg: var(--grw-primary-200);
  12. }
  13. }
  14. }
  15. @include bs.color-mode(dark) {
  16. .tree-item-for-modal :global {
  17. .list-group-item-action {
  18. --bs-list-group-active-bg: var(--grw-primary-700);
  19. }
  20. }
  21. }