Skip to content
代码片段 群组 项目
提交 8100039a 编辑于 作者: Lukas Eipert's avatar Lukas Eipert
浏览文件

Remove broken SCSS rule

When working on the new CSS compiler, we found this broken SCSS rule,
which simplified looks like this:
```scss
.class::before {
  &.other-class {
    top: 30px;
  }
}
```

It currently compiles to `.class.other-class::before`. In the new SASS
compiler, it compiles to `.class::before.other-class` which is invalid.
It's really confusing why this works _currently_, and it's the only
of this in our code base.

Luckily for us, the rule seems obsolete (I suspect that something in
https://gitlab.com/gitlab-org/gitlab/-/merge_requests/135038 might have
fixed it).
上级 9546a9df
No related branches found
No related tags found
加载中
加载中
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册