Mirror of https://github.com/roostorg/osprey
github.com/roostorg/osprey
1.viewContainer {
2 height: 100%;
3 width: 100%;
4 display: flex;
5 overflow: hidden;
6 flex-direction: column;
7 background-color: var(--background-primary);
8}
9
10.recenterButton {
11 position: absolute;
12 bottom: 60px;
13 right: 60px;
14 box-shadow:
15 0 3px 6px -4px #0000001f,
16 0 6px 16px #00000014,
17 0 9px 28px 8px #0000000d;
18}
19
20.graphContainer {
21 position: relative;
22 width: 100%;
23 height: 100%;
24}
25
26.recenterCard {
27 position: absolute;
28 top: 10px;
29 left: 10px;
30 width: 250px;
31 z-index: 50;
32 box-shadow:
33 0 3px 6px -4px #0000001f,
34 0 6px 16px #00000014,
35 0 9px 28px 8px #0000001d;
36}
37
38.recenterButton:focus:not(:hover) {
39 color: unset;
40 border-color: unset;
41}
42
43.centered {
44 position: absolute;
45 top: 40%;
46 left: 50%;
47 transform: translateX(-50%);
48}