Need a second pair of eyes (sidebar indentation)

Hello

As an excercise I’m trying to indent the rows under e.g. Community, Categories, Tags and so on. I created a component for it and it works.

What I would like to know is if

  1. This is the correct approach?
  2. This has an effect anywhere else on the forum that I’m working on?

Component1; indents, keeps icons.

    .sidebar-section-link-wrapper {
      .sidebar-section-link-prefix {
        margin-left: 40px;
      }
    }

Component2: indents, removes icons

    .sidebar-section-link-wrapper {
      .sidebar-section-link-prefix {
        display: none;
      }
      .sidebar-section-link-content-text
      {
        margin-left: 40px;
      }
    }

One side question:
What is the ‘official’ name for the square blocks in front of the items under categories in the sidebar and categories/subcategories on the homepage?
image

In the category_style setting (and in the CSS) this is called “bullet”.

4 Likes