Bin
2025-12-16 9e0b2ba2c317b1a86212f24cbae3195ad1f3dbfa
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
.root {
  height: 100%;
  box-sizing: border-box;
  background-color: var(--color-neutral-background);
}
 
.tab-panel {
  display: flex;
  padding: 12px 16px;
  background-color: var(--color-neutral-background);
  color: var(--color-neutral-content-subtle);
  justify-content: space-between;
  border-bottom: 1px solid var(--color-neutral-border);
 
  &_newUI {
    padding: 8px;
  }
}
 
.grid {
  flex: 1;
}
 
.grid__item {
  padding: 10px;
  justify-content: space-between;
  box-sizing: border-box;
  box-shadow: -0.5px -0.5px 0 0.5px #ccc;
}
 
.container {
  padding: 2em;
  width: 90%;
  height: 600px;
  margin-left: auto;
  margin-right: auto;
}
 
.app-loader {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.ant-picker-cell {
  padding: 3px 0 !important;
  border: none !important;
}
 
.offscreen {
  bottom: 100%;
  right: 100%;
  opacity: 0;
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-neutral-background);
  z-index: 100000;
}
 
.offscreen-lsf.visible {
  inset: 0 auto auto 0;
  opacity: 1;
}
 
.fill-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.horizontal-shadow {
  &::after {
    top: 100%;
    width: 100%;
    left: 0;
    content: "";
    position: absolute;
    height: 4px;
    background: linear-gradient(to bottom, rgba(var(--color-neutral-shadow-raw) / 20%) 0%, transparent 100%);
  }
}
 
.crash {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
 
  &__header {
    font-size: 22px;
    font-weight: 500;
  }
 
  &__description {
    margin-top: 32px;
    font-size: 16px;
  }
}