forked from opensearch-project/OpenSearch-Dashboards
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkspace.scss
More file actions
46 lines (39 loc) · 711 Bytes
/
workspace.scss
File metadata and controls
46 lines (39 loc) · 711 Bytes
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
/*
* Copyright OpenSearch Contributors
* SPDX-License-Identifier: Apache-2.0
*/
.wizWorkspace {
display: grid;
-ms-grid-rows: auto $euiSizeM 1fr;
grid-template-rows: auto 1fr;
grid-area: workspace;
grid-gap: $euiSizeM;
padding: $euiSizeM;
background-color: $euiColorEmptyShade;
height: 100%;
&__empty {
height: 100%;
}
&__container {
position: relative;
}
&__handFieldSvg {
animation: wizDragAnimation 6s ease-in-out infinite forwards;
position: absolute;
top: 34.5%;
}
}
@keyframes wizDragAnimation {
0% {
transform: none;
}
30% {
transform: translate(116%, -80%);
}
60% {
transform: none;
}
100% {
transform: none;
}
}