Blame view

public/scss/blocks/_breadcrumbs.scss 1.05 KB
242debab8   thesolarwind   Первый коммит в п...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
  .breadcrumbs {
      padding: 40px 0 30px;
  
      @media (min-width: 1200px) {
          padding: 40px 0 50px;
      }
  
      &__list {
          display: flex;
          overflow-x: auto;
          margin: 0 -20px;
          padding: 0 20px 10px;
          scrollbar-width: none;
  
          &::-webkit-scrollbar {
              height: 0;
          }
      }
  
      &__item {
          position: relative;
          flex-shrink: 0;
  
          &:not(:last-child) {
              position: relative;
              margin-right: 28px;
  
              &::after {
                  content: '';
                  position: absolute;
                  top: 50%;
                  right: -16px;
                  transform: translateY(-50%);
                  width: 4px;
                  height: 4px;
                  background-color: $white;
              }
          }
  
          &:last-child {
              .breadcrumbs__link {
                  color: #CDCECF;
              }
          }
      }
  
      &__link {
          display: block;
          color: $white;
          font-size: 14px;
          line-height: 20px;
          font-weight: 600;
      }
  }