Blame view

public/scss/blocks/_social.scss 443 Bytes
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
  .social {
  
      &__title {
          margin-bottom: 20px;
          color: $black;
          font-size: 14px;
          line-height: 20px;
          font-weight: 600;
      }
  
      &__list {
          display: flex;
      }
  
      &__item {
          &:not(:last-child) {
              margin-right: 10px;
          }
      }
  
      &__link {
          position: relative;
          display: block;
          width: 40px;
          height: 40px;
          border-radius: 50%;
      }
  }