blob: 0ec879288316d7f1893c7fd38806035ac6ffd822 (
plain)
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
|
.palette-container {
.palette-thumb {
touch-action: pan-x;
position: absolute;
height: 70px;
overflow: hidden;
.palette-thumbContent {
transition: transform .3s;
width: max-content;
overflow: hidden;
.collectionView {
overflow: visible;
.collectionLinearView-outer {
overflow: visible;
}
}
}
.palette-cover {
width: 50px;
height: 50px;
position: absolute;
bottom: 0;
border: 1px solid black;
}
}
}
|