blob: 1c46081a14a8df0829100c6db276d91355eb68d5 (
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
|
@import "../globalCssVariables";
.collectionView {
border-width: 0;
border-color: $light-color-secondary;
border-style: solid;
border-radius: 0 0 $border-radius $border-radius;
box-sizing: border-box;
border-radius: inherit;
width: 100%;
height: 100%;
overflow: hidden; // bcz: used to be 'auto' which would create scrollbars when there's a floating doc that's not visible. not sure if that's better, but the scrollbars are annoying...
}
#google-tags {
transition: all 0.5s ease 0s;
width: 30px;
height: 30px;
position: absolute;
bottom: 15px;
left: 15px;
border: 2px solid black;
border-radius: 50%;
padding: 3px;
background: white;
}
|