File size: 780 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.collection-grid {
  display: flex;
  flex-direction: row;
  position: relative;
  margin-bottom: 40px;

  &__left-arrow,
  &__right-arrow {
    display: flex;
    align-items: center;
    font-size: 3rem;
    z-index: 1;
    opacity: 0.8;
    color: white;
    height: 100%;

    &--icon {
      cursor: pointer;
      &:hover {
        font-size: 3.5rem;
        color: white;
        transition: all 0.2s ease;
      }
    }
  }

  &__left-arrow {
    position: absolute;
    bottom: 5%;
  }

  &__right-arrow {
    position: absolute;
    right: 0;
    bottom: 5%;
  }

  &__outer {
    margin: 0;
    padding: 0;
    width: 100vw;
    overflow-x: hidden;
}

  &__inner {
    display: inline-flex;
    flex-direction: row;
  }
}