NO BUG: Bricks filter - Indentation:Gap only working on Top parent

Browser: Chrome 110
OS: Windows

Would be nice if the indentation gap would work on all levels of the hierarchy (eg. Australia > New South Wales > Sydney)

I would be able to remove the dashes if it worked like that. Seems like it might be a bug?

Hi Rafi,
Thanks so much for your report!

You can easily add custom styles (and an empty space as indentation prefix) to achieve the desired result, such as:

%root% [class*="depth-2"]:not([class*="depth-0"]) {
  margin-inline-start: calc(var(--space-m) * 2);
}

%root% [class*="depth-3"]:not([class*="depth-0"]) {
  margin-inline-start: calc(var(--space-m) * 3);
}

%root% [class*="depth-4"]:not([class*="depth-0"]) {
  margin-inline-start: calc(var(--space-m) * 4);
}

Best regards,
timmse