Blame view

public/scss/pages/main/pick-up.scss 667 Bytes
b80175387   Андрей Ларионов   Начальный проект ...
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
  @import "../../vars";
  @import "../../mixins";
  
  .pick-up {
    margin-top: 121px;
  
      &-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
  
        &:nth-child(3n) {
            margin-right: 0; 
          }
      }
  }
  
        .pick-up-block {
          margin-top: 20px;
  
          &__four {
            position: relative;
          }
  
            &__button {
              position: absolute;
              @include btn-orange;
              text-align: center;  
              padding: 16px 40px;
              bottom: 25px;
              left: 26px;
  
              &:hover {
                @include btn-orange-hover;
              }
            }
         
        }