mergeable selector scss lint solved

Solutions on MaxInterview for mergeable selector scss lint solved by the best coders in the world

showing results for - "mergeable selector scss lint solved"
Emanuele
16 Feb 2017
1.arrow--right {
2  border-bottom: 12px solid transparent;
3  border-left: 12px solid $border-color;
4  border-top: 12px solid transparent;
5  cursor: pointer;
6  height: 0;
7  transform: rotate(0deg);
8  transition: transform .1s linear;
9  width: 0;
10
11  &:hover {
12    border-left-color: $brand-highlight;
13  }
14}