File size: 497 Bytes
74e8f2f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@import '../style/mixins';

.selector {
  overflow: scroll;
  padding-bottom: 10px; // OS X scroll bar

  .inner {
    white-space: nowrap;

    .thumb {
      display: inline-block;

      img {
        cursor: pointer;

        width: 20vmin;
        height: 20vmin;
        max-width: 200px;
        max-height: 200px;

        @include phone-portrait {
          width: 33vmin;
          height: 33vmin;
        }

        margin: 10px;

        box-shadow: 0 0 10px #888;
      }
    }
  }
}