@teselagen/ui 0.7.36 → 0.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/DataTable/EditabelCell.d.ts +7 -0
- package/DataTable/defaultProps.d.ts +43 -0
- package/DataTable/utils/computePresets.d.ts +1 -0
- package/DataTable/utils/useDeepEqualMemo.d.ts +1 -0
- package/DataTable/utils/useTableParams.d.ts +49 -0
- package/index.cjs.js +30 -9
- package/index.es.js +30 -9
- package/package.json +1 -1
- package/src/AdvancedOptions.spec.js +26 -0
- package/src/AsyncValidateFieldSpinner/index.js +12 -0
- package/src/BlueprintError/index.js +14 -0
- package/src/BounceLoader/index.js +16 -0
- package/src/BounceLoader/style.css +45 -0
- package/src/CollapsibleCard/index.js +68 -0
- package/src/CollapsibleCard/style.css +23 -0
- package/src/DNALoader/index.js +20 -0
- package/src/DNALoader/style.css +251 -0
- package/src/DataTable/Columns.jsx +945 -0
- package/src/DataTable/EditabelCell.jsx +44 -0
- package/src/DataTable/EditableCell.js +44 -0
- package/src/DataTable/RenderCell.js +191 -0
- package/{RenderCell.js → src/DataTable/RenderCell.jsx} +1 -1
- package/src/DataTable/defaultProps.js +45 -0
- package/src/DataTable/index.js +3244 -0
- package/src/DataTable/style.css +608 -0
- package/src/DataTable/utils/computePresets.js +42 -0
- package/src/DataTable/utils/index.js +55 -0
- package/src/DataTable/utils/useDeepEqualMemo.js +10 -0
- package/src/DataTable/utils/useTableParams.js +361 -0
- package/src/DialogFooter/index.js +86 -0
- package/src/DialogFooter/style.css +9 -0
- package/src/FormComponents/index.js +1266 -0
- package/src/FormComponents/style.css +275 -0
- package/src/FormComponents/utils.js +6 -0
- package/src/HotkeysDialog/index.js +79 -0
- package/src/HotkeysDialog/style.css +54 -0
- package/src/InfoHelper/index.js +78 -0
- package/src/InfoHelper/style.css +7 -0
- package/src/IntentText/index.js +18 -0
- package/src/Loading/index.js +70 -0
- package/src/Loading/style.css +4 -0
- package/src/MenuBar/index.js +423 -0
- package/src/MenuBar/style.css +45 -0
- package/src/PromptUnsavedChanges/index.js +38 -0
- package/src/ResizableDraggableDialog/index.js +141 -0
- package/src/ResizableDraggableDialog/style.css +42 -0
- package/src/ScrollToTop/index.js +72 -0
- package/src/TagSelect/index.js +69 -0
- package/src/TagSelect/style.css +13 -0
- package/src/TgHtmlSelect/index.js +20 -0
- package/src/TgSelect/index.js +537 -0
- package/src/TgSelect/style.css +61 -0
- package/src/TgSuggest/index.js +124 -0
- package/src/Timeline/index.js +15 -0
- package/src/Timeline/style.css +29 -0
- package/src/enhancers/withDialog/index.js +196 -0
- package/src/index.js +87 -0
- package/src/showConfirmationDialog/index.js +148 -0
- package/src/style.css +265 -0
- package/{isBeingCalledExcessively.js → src/utils/isBeingCalledExcessively.js} +0 -2
- package/style.css +10508 -0
- /package/{AdvancedOptions.js → src/AdvancedOptions.js} +0 -0
- /package/{AssignDefaultsModeContext.js → src/AssignDefaultsModeContext.js} +0 -0
- /package/{CellDragHandle.js → src/DataTable/CellDragHandle.js} +0 -0
- /package/{ColumnFilterMenu.js → src/DataTable/ColumnFilterMenu.js} +0 -0
- /package/{Columns.js → src/DataTable/Columns.js} +0 -0
- /package/{DisabledLoadingComponent.js → src/DataTable/DisabledLoadingComponent.js} +0 -0
- /package/{DisplayOptions.js → src/DataTable/DisplayOptions.js} +0 -0
- /package/{DropdownCell.js → src/DataTable/DropdownCell.js} +0 -0
- /package/{EditableCell.js → src/DataTable/EditabelCell.js} +0 -0
- /package/{FilterAndSortMenu.js → src/DataTable/FilterAndSortMenu.js} +0 -0
- /package/{PagingTool.js → src/DataTable/PagingTool.js} +0 -0
- /package/{SearchBar.js → src/DataTable/SearchBar.js} +0 -0
- /package/{SortableColumns.js → src/DataTable/SortableColumns.js} +0 -0
- /package/{TableFormTrackerContext.js → src/DataTable/TableFormTrackerContext.js} +0 -0
- /package/{ThComponent.js → src/DataTable/ThComponent.js} +0 -0
- /package/{dataTableEnhancer.js → src/DataTable/dataTableEnhancer.js} +0 -0
- /package/{defaultFormatters.js → src/DataTable/defaultFormatters.js} +0 -0
- /package/{defaultValidators.js → src/DataTable/defaultValidators.js} +0 -0
- /package/{editCellHelper.js → src/DataTable/editCellHelper.js} +0 -0
- /package/{getCellVal.js → src/DataTable/getCellVal.js} +0 -0
- /package/{getVals.js → src/DataTable/getVals.js} +0 -0
- /package/{isTruthy.js → src/DataTable/isTruthy.js} +0 -0
- /package/{isValueEmpty.js → src/DataTable/isValueEmpty.js} +0 -0
- /package/{convertSchema.js → src/DataTable/utils/convertSchema.js} +0 -0
- /package/{formatPasteData.js → src/DataTable/utils/formatPasteData.js} +0 -0
- /package/{getAllRows.js → src/DataTable/utils/getAllRows.js} +0 -0
- /package/{getCellCopyText.js → src/DataTable/utils/getCellCopyText.js} +0 -0
- /package/{getCellInfo.js → src/DataTable/utils/getCellInfo.js} +0 -0
- /package/{getFieldPathToField.js → src/DataTable/utils/getFieldPathToField.js} +0 -0
- /package/{getIdOrCodeOrIndex.js → src/DataTable/utils/getIdOrCodeOrIndex.js} +0 -0
- /package/{getLastSelectedEntity.js → src/DataTable/utils/getLastSelectedEntity.js} +0 -0
- /package/{getNewEntToSelect.js → src/DataTable/utils/getNewEntToSelect.js} +0 -0
- /package/{getRowCopyText.js → src/DataTable/utils/getRowCopyText.js} +0 -0
- /package/{getTableConfigFromStorage.js → src/DataTable/utils/getTableConfigFromStorage.js} +0 -0
- /package/{handleCopyColumn.js → src/DataTable/utils/handleCopyColumn.js} +0 -0
- /package/{handleCopyHelper.js → src/DataTable/utils/handleCopyHelper.js} +0 -0
- /package/{handleCopyRows.js → src/DataTable/utils/handleCopyRows.js} +0 -0
- /package/{handleCopyTable.js → src/DataTable/utils/handleCopyTable.js} +0 -0
- /package/{isBottomRightCornerOfRectangle.js → src/DataTable/utils/isBottomRightCornerOfRectangle.js} +0 -0
- /package/{isEntityClean.js → src/DataTable/utils/isEntityClean.js} +0 -0
- /package/{primarySelectedValue.js → src/DataTable/utils/primarySelectedValue.js} +0 -0
- /package/{queryParams.js → src/DataTable/utils/queryParams.js} +0 -0
- /package/{removeCleanRows.js → src/DataTable/utils/removeCleanRows.js} +0 -0
- /package/{rowClick.js → src/DataTable/utils/rowClick.js} +0 -0
- /package/{selection.js → src/DataTable/utils/selection.js} +0 -0
- /package/{useTableEntities.js → src/DataTable/utils/useTableEntities.js} +0 -0
- /package/{utils.js → src/DataTable/utils/utils.js} +0 -0
- /package/{withSelectedEntities.js → src/DataTable/utils/withSelectedEntities.js} +0 -0
- /package/{withTableParams.js → src/DataTable/utils/withTableParams.js} +0 -0
- /package/{validateTableWideErrors.js → src/DataTable/validateTableWideErrors.js} +0 -0
- /package/{viewColumn.js → src/DataTable/viewColumn.js} +0 -0
- /package/{DropdownButton.js → src/DropdownButton.js} +0 -0
- /package/{FillWindow.css → src/FillWindow.css} +0 -0
- /package/{FillWindow.js → src/FillWindow.js} +0 -0
- /package/{FormSeparator.js → src/FormComponents/FormSeparator.js} +0 -0
- /package/{LoadingDots.js → src/FormComponents/LoadingDots.js} +0 -0
- /package/{Uploader.js → src/FormComponents/Uploader.js} +0 -0
- /package/{getNewName.js → src/FormComponents/getNewName.js} +0 -0
- /package/{itemUpload.js → src/FormComponents/itemUpload.js} +0 -0
- /package/{sortify.js → src/FormComponents/sortify.js} +0 -0
- /package/{tryToMatchSchemas.js → src/FormComponents/tryToMatchSchemas.js} +0 -0
- /package/{MatchHeaders.js → src/MatchHeaders.js} +0 -0
- /package/{SimpleStepViz.js → src/SimpleStepViz.js} +0 -0
- /package/{Tag.js → src/Tag.js} +0 -0
- /package/{TimelineEvent.js → src/Timeline/TimelineEvent.js} +0 -0
- /package/{UploadCsvWizard.css → src/UploadCsvWizard.css} +0 -0
- /package/{UploadCsvWizard.js → src/UploadCsvWizard.js} +0 -0
- /package/{autoTooltip.js → src/autoTooltip.js} +0 -0
- /package/{constants.js → src/constants.js} +0 -0
- /package/{customIcons.js → src/customIcons.js} +0 -0
- /package/{tg_modalState.js → src/enhancers/withDialog/tg_modalState.js} +0 -0
- /package/{withField.js → src/enhancers/withField.js} +0 -0
- /package/{withFields.js → src/enhancers/withFields.js} +0 -0
- /package/{withLocalStorage.js → src/enhancers/withLocalStorage.js} +0 -0
- /package/{rerenderOnWindowResize.js → src/rerenderOnWindowResize.js} +0 -0
- /package/{showAppSpinner.js → src/showAppSpinner.js} +0 -0
- /package/{showDialogOnDocBody.js → src/showDialogOnDocBody.js} +0 -0
- /package/{throwFormError.js → src/throwFormError.js} +0 -0
- /package/{toastr.js → src/toastr.js} +0 -0
- /package/{typeToCommonType.js → src/typeToCommonType.js} +0 -0
- /package/{useDialog.js → src/useDialog.js} +0 -0
- /package/{adHoc.js → src/utils/adHoc.js} +0 -0
- /package/{basicHandleActionsWithFullState.js → src/utils/basicHandleActionsWithFullState.js} +0 -0
- /package/{browserUtils.js → src/utils/browserUtils.js} +0 -0
- /package/{combineReducersWithFullState.js → src/utils/combineReducersWithFullState.js} +0 -0
- /package/{commandControls.js → src/utils/commandControls.js} +0 -0
- /package/{commandUtils.js → src/utils/commandUtils.js} +0 -0
- /package/{determineBlackOrWhiteTextColor.js → src/utils/determineBlackOrWhiteTextColor.js} +0 -0
- /package/{getDayjsFormatter.js → src/utils/getDayjsFormatter.js} +0 -0
- /package/{getTextFromEl.js → src/utils/getTextFromEl.js} +0 -0
- /package/{handlerHelpers.js → src/utils/handlerHelpers.js} +0 -0
- /package/{index.js → src/utils/hooks/index.js} +0 -0
- /package/{useDeepEqualMemo.js → src/utils/hooks/useDeepEqualMemo.js} +0 -0
- /package/{useStableReference.js → src/utils/hooks/useStableReference.js} +0 -0
- /package/{hotkeyUtils.js → src/utils/hotkeyUtils.js} +0 -0
- /package/{menuUtils.js → src/utils/menuUtils.js} +0 -0
- /package/{popoverOverflowModifiers.js → src/utils/popoverOverflowModifiers.js} +0 -0
- /package/{pureNoFunc.js → src/utils/pureNoFunc.js} +0 -0
- /package/{renderOnDoc.js → src/utils/renderOnDoc.js} +0 -0
- /package/{showProgressToast.js → src/utils/showProgressToast.js} +0 -0
- /package/{tagUtils.js → src/utils/tagUtils.js} +0 -0
- /package/{tgFormValues.js → src/utils/tgFormValues.js} +0 -0
- /package/{useTraceUpdate.js → src/utils/useTraceUpdate.js} +0 -0
- /package/{withSelectTableRecords.js → src/utils/withSelectTableRecords.js} +0 -0
- /package/{withStore.js → src/utils/withStore.js} +0 -0
- /package/{wrapDialog.js → src/wrapDialog.js} +0 -0
|
@@ -0,0 +1,251 @@
|
|
|
1
|
+
.dna-loader {
|
|
2
|
+
display: inline-block;
|
|
3
|
+
position: relative;
|
|
4
|
+
transform: scale(0.45);
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.nucleobase {
|
|
8
|
+
display: inline-block;
|
|
9
|
+
position: relative;
|
|
10
|
+
vertical-align: middle;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.nucleobase:not(:last-child) {
|
|
14
|
+
margin-right: 4.86vh;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.nucleobase:before,
|
|
18
|
+
.nucleobase:after {
|
|
19
|
+
content: "";
|
|
20
|
+
display: inline-block;
|
|
21
|
+
width: 3vh;
|
|
22
|
+
height: 3vh;
|
|
23
|
+
border-radius: 50%;
|
|
24
|
+
position: absolute;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.nucleobase:nth-child(10) {
|
|
28
|
+
animation-delay: -1.869s;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.nucleobase:nth-child(10):before {
|
|
32
|
+
animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
33
|
+
animation-delay: -1.869s;
|
|
34
|
+
background-color: #339bb9;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.nucleobase:nth-child(10):after {
|
|
38
|
+
animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
39
|
+
animation-delay: -1.869s;
|
|
40
|
+
background-color: #006cab;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.nucleobase:nth-child(9) {
|
|
44
|
+
animation-delay: -3.738s;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.nucleobase:nth-child(9):before {
|
|
48
|
+
animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
49
|
+
animation-delay: -3.738s;
|
|
50
|
+
background-color: #339bb9;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.nucleobase:nth-child(9):after {
|
|
54
|
+
animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
55
|
+
animation-delay: -3.738s;
|
|
56
|
+
background-color: #006cab;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.nucleobase:nth-child(8) {
|
|
60
|
+
animation-delay: -5.607s;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.nucleobase:nth-child(8):before {
|
|
64
|
+
animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
65
|
+
animation-delay: -5.607s;
|
|
66
|
+
background-color: #339bb9;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.nucleobase:nth-child(8):after {
|
|
70
|
+
animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
71
|
+
animation-delay: -5.607s;
|
|
72
|
+
background-color: #006cab;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.nucleobase:nth-child(7) {
|
|
76
|
+
animation-delay: -7.476s;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.nucleobase:nth-child(7):before {
|
|
80
|
+
animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
81
|
+
animation-delay: -7.476s;
|
|
82
|
+
background-color: #339bb9;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.nucleobase:nth-child(7):after {
|
|
86
|
+
animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
87
|
+
animation-delay: -7.476s;
|
|
88
|
+
background-color: #006cab;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.nucleobase:nth-child(6) {
|
|
92
|
+
animation-delay: -9.345s;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.nucleobase:nth-child(6):before {
|
|
96
|
+
animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
97
|
+
animation-delay: -9.345s;
|
|
98
|
+
background-color: #339bb9;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.nucleobase:nth-child(6):after {
|
|
102
|
+
animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
103
|
+
animation-delay: -9.345s;
|
|
104
|
+
background-color: #006cab;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.nucleobase:nth-child(5) {
|
|
108
|
+
animation-delay: -11.214s;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.nucleobase:nth-child(5):before {
|
|
112
|
+
animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
113
|
+
animation-delay: -11.214s;
|
|
114
|
+
background-color: #339bb9;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.nucleobase:nth-child(5):after {
|
|
118
|
+
animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
119
|
+
animation-delay: -11.214s;
|
|
120
|
+
background-color: #006cab;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.nucleobase:nth-child(4) {
|
|
124
|
+
animation-delay: -13.083s;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.nucleobase:nth-child(4):before {
|
|
128
|
+
animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
129
|
+
animation-delay: -13.083s;
|
|
130
|
+
background-color: #339bb9;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.nucleobase:nth-child(4):after {
|
|
134
|
+
animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
135
|
+
animation-delay: -13.083s;
|
|
136
|
+
background-color: #006cab;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.nucleobase:nth-child(3) {
|
|
140
|
+
animation-delay: -14.952s;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.nucleobase:nth-child(3):before {
|
|
144
|
+
animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
145
|
+
animation-delay: -14.952s;
|
|
146
|
+
background-color: #339bb9;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.nucleobase:nth-child(3):after {
|
|
150
|
+
animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
151
|
+
animation-delay: -14.952s;
|
|
152
|
+
background-color: #006cab;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.nucleobase:nth-child(2) {
|
|
156
|
+
animation-delay: -16.821s;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.nucleobase:nth-child(2):before {
|
|
160
|
+
animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
161
|
+
animation-delay: -16.821s;
|
|
162
|
+
background-color: #339bb9;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.nucleobase:nth-child(2):after {
|
|
166
|
+
animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
167
|
+
animation-delay: -16.821s;
|
|
168
|
+
background-color: #006cab;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.nucleobase:nth-child(1) {
|
|
172
|
+
animation-delay: -18.69s;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.nucleobase:nth-child(1):before {
|
|
176
|
+
animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
177
|
+
animation-delay: -18.69s;
|
|
178
|
+
background-color: #339bb9;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.nucleobase:nth-child(1):after {
|
|
182
|
+
animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
183
|
+
animation-delay: -18.69s;
|
|
184
|
+
background-color: #006cab;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
@keyframes animBefore {
|
|
188
|
+
0% {
|
|
189
|
+
top: -6vh;
|
|
190
|
+
z-index: 1;
|
|
191
|
+
}
|
|
192
|
+
25% {
|
|
193
|
+
transform: scale(1.2);
|
|
194
|
+
z-index: 1;
|
|
195
|
+
}
|
|
196
|
+
50% {
|
|
197
|
+
top: 6vh;
|
|
198
|
+
z-index: -1;
|
|
199
|
+
}
|
|
200
|
+
75% {
|
|
201
|
+
background-color: #5bc0de;
|
|
202
|
+
transform: scale(0.8);
|
|
203
|
+
z-index: -1;
|
|
204
|
+
}
|
|
205
|
+
100% {
|
|
206
|
+
top: -6vh;
|
|
207
|
+
z-index: -1;
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
@keyframes animAfter {
|
|
212
|
+
0% {
|
|
213
|
+
top: 6vh;
|
|
214
|
+
z-index: -1;
|
|
215
|
+
}
|
|
216
|
+
25% {
|
|
217
|
+
background-color: #055e75;
|
|
218
|
+
transform: scale(0.8);
|
|
219
|
+
z-index: -1;
|
|
220
|
+
}
|
|
221
|
+
50% {
|
|
222
|
+
top: -6vh;
|
|
223
|
+
z-index: 1;
|
|
224
|
+
}
|
|
225
|
+
75% {
|
|
226
|
+
transform: scale(1.2);
|
|
227
|
+
z-index: 1;
|
|
228
|
+
}
|
|
229
|
+
100% {
|
|
230
|
+
top: 6vh;
|
|
231
|
+
z-index: 1;
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
@keyframes animDotBar {
|
|
236
|
+
0% {
|
|
237
|
+
height: 8.25vh;
|
|
238
|
+
}
|
|
239
|
+
25% {
|
|
240
|
+
height: 0;
|
|
241
|
+
}
|
|
242
|
+
50% {
|
|
243
|
+
height: 8.25vh;
|
|
244
|
+
}
|
|
245
|
+
75% {
|
|
246
|
+
height: 0;
|
|
247
|
+
}
|
|
248
|
+
100% {
|
|
249
|
+
height: 8.25vh;
|
|
250
|
+
}
|
|
251
|
+
}
|