Account created on 29 March 2023, over 1 year ago
#

Recent comments

Looking at this issue too, it seems like the cause is a conflict with the Claro Theme css setting a colour in the `.add.open` class.

Instead of using !important (which might cause other side effects), I would suggest the fix targets this class specifically, by setting the Gin theme colour at the same specificity.

// _views.scss

  .add {
    &.open {
      a {
        background: var(--gin-bg-layer2);
        color: var(--gin-color-primary); // ADDED

        &:hover, &:focus, &:active {
          color: var(--gin-color-primary);
        }
      }
    }
  }
Production build 0.71.5 2024