halleyx-ui-framework 4.1.7 → 4.1.9

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.
Files changed (67) hide show
  1. package/README.md +1 -1
  2. package/dist/cjs/index.js +1 -1
  3. package/dist/es/index.js +1 -1
  4. package/dist/src/assets/icon-style.css +1 -1
  5. package/dist/src/assets/icons/icon-style(old).css +1 -1
  6. package/dist/src/assets/icons/icon-style.css +1 -1
  7. package/dist/src/assets/styles/accordion.scss +99 -99
  8. package/dist/src/assets/styles/base.scss +6 -1
  9. package/dist/src/assets/styles/breadcrumb.scss +15 -15
  10. package/dist/src/assets/styles/buttons.scss +4 -4
  11. package/dist/src/assets/styles/calendar.scss +343 -346
  12. package/dist/src/assets/styles/cards.scss +17 -16
  13. package/dist/src/assets/styles/colorPicker.scss +15 -15
  14. package/dist/src/assets/styles/colorpalette.scss +138 -139
  15. package/dist/src/assets/styles/common/var.scss +258 -31
  16. package/dist/src/assets/styles/componentlayout.scss +126 -128
  17. package/dist/src/assets/styles/contextMenu.scss +46 -47
  18. package/dist/src/assets/styles/customdropdown.scss +113 -115
  19. package/dist/src/assets/styles/dashboard.scss +764 -770
  20. package/dist/src/assets/styles/dataview.scss +203 -206
  21. package/dist/src/assets/styles/divider.scss +8 -8
  22. package/dist/src/assets/styles/dottedPagination.scss +1 -1
  23. package/dist/src/assets/styles/draggables.scss +36 -39
  24. package/dist/src/assets/styles/drawer.scss +68 -53
  25. package/dist/src/assets/styles/errorpage.scss +61 -64
  26. package/dist/src/assets/styles/fileupload.scss +199 -205
  27. package/dist/src/assets/styles/fonts.scss +29 -9
  28. package/dist/src/assets/styles/icon.scss +1 -1
  29. package/dist/src/assets/styles/imagegallery.scss +169 -167
  30. package/dist/src/assets/styles/importProgress.scss +1 -1
  31. package/dist/src/assets/styles/index.scss +21 -0
  32. package/dist/src/assets/styles/inputfields.scss +44 -46
  33. package/dist/src/assets/styles/inputitems.scss +315 -318
  34. package/dist/src/assets/styles/label.scss +48 -54
  35. package/dist/src/assets/styles/loaders.scss +1 -1
  36. package/dist/src/assets/styles/mixins/_var.scss +31 -37
  37. package/dist/src/assets/styles/mixins/functions.scss +7 -7
  38. package/dist/src/assets/styles/modalwindow.scss +100 -103
  39. package/dist/src/assets/styles/newtable.scss +10 -23
  40. package/dist/src/assets/styles/objectViewer.scss +80 -80
  41. package/dist/src/assets/styles/pagination.scss +12 -6
  42. package/dist/src/assets/styles/rating.scss +2 -2
  43. package/dist/src/assets/styles/scrollbar.scss +14 -14
  44. package/dist/src/assets/styles/search.scss +162 -169
  45. package/dist/src/assets/styles/select.scss +455 -480
  46. package/dist/src/assets/styles/sidebar.scss +14 -2
  47. package/dist/src/assets/styles/signup.scss +118 -128
  48. package/dist/src/assets/styles/slideControl.scss +1 -0
  49. package/dist/src/assets/styles/source_content.scss +13 -13
  50. package/dist/src/assets/styles/speeddial.scss +152 -163
  51. package/dist/src/assets/styles/style.css.map +12 -12
  52. package/dist/src/assets/styles/switch.scss +177 -189
  53. package/dist/src/assets/styles/tablev2.scss +140 -143
  54. package/dist/src/assets/styles/tabs.scss +48 -49
  55. package/dist/src/assets/styles/tag.scss +3 -3
  56. package/dist/src/assets/styles/texteditor.scss +165 -172
  57. package/dist/src/assets/styles/timeline.scss +384 -400
  58. package/dist/src/assets/styles/tooltip.scss +52 -72
  59. package/dist/src/assets/styles/tree.scss +13 -15
  60. package/dist/src/assets/styles/treeSelect.scss +8 -8
  61. package/dist/src/assets/styles/variables.scss +9 -9
  62. package/dist/src/assets/styles/visualbuilder.scss +362 -366
  63. package/dist/umd/index.umd.js +1 -1
  64. package/dist/umd/index.umd.js.map +1 -1
  65. package/package.json +1 -1
  66. package/dist/es/index.css +0 -1
  67. package/dist/umd/index.umd.css +0 -1
@@ -1,361 +1,358 @@
1
1
  :root {
2
- --light-body: #f3f8fe;
3
- --light-main: #fdfdfd;
4
- --light-second: var(--hlx-color-primary);
5
- --light-hover: var(--hlx-color-primary-light);
6
- --light-text: #565553;
2
+ --light-body: #f3f8fe;
3
+ --light-main: #fdfdfd;
4
+ --light-second: var(--hlx-color-primary);
5
+ --light-hover: var(--hlx-color-primary-light);
6
+ --light-text: #565553;
7
7
 
8
- --blue: #54bd95;
9
- --white: #fff;
8
+ --blue: #54bd95;
9
+ --white: #fff;
10
10
 
11
- --shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
11
+ --shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
12
12
 
13
- --font-family: OpenSans;
13
+ --font-family: OpenSans;
14
14
  }
15
15
  .light {
16
- --bg-body: var(--light-body);
17
- --bg-main: var(--light-main);
18
- --bg-second: var(--light-second);
19
- --color-hover: var(--light-hover);
20
- --color-txt: var(--light-text);
21
- box-shadow: 0px 0px 10px 1px #cfcfcf;
16
+ --bg-body: var(--light-body);
17
+ --bg-main: var(--light-main);
18
+ --bg-second: var(--light-second);
19
+ --color-hover: var(--light-hover);
20
+ --color-txt: var(--light-text);
21
+ box-shadow: 0px 0px 10px 1px #cfcfcf;
22
+ border-radius: 10px;
23
+ position: relative;
24
+ // margin-top: -310px;
25
+ z-index: 1009;
26
+ .disable-weekend {
27
+ color: var(--hlx-border-color) !important;
28
+ cursor: not-allowed !important;
29
+ }
30
+ .theme-background {
31
+ background: var(--hlx-color-primary) !important;
32
+ }
33
+ .calendar {
34
+ height: 340px;
35
+ width: 310px;
36
+ background-color: var(--bg-main);
22
37
  border-radius: 10px;
38
+ padding: 5px;
39
+ position: absolute;
40
+ box-shadow: 0px 0px 5px #d8d8d8;
41
+ overflow: hidden;
42
+ /* transform: scale(1.25); */
43
+ }
44
+
45
+ .light .calendar {
46
+ box-shadow: var(--shadow);
47
+ }
48
+
49
+ .calendar-header {
50
+ display: flex;
51
+ justify-content: space-between;
52
+ align-items: center;
53
+ font-size: 14px;
54
+ font-weight: 600;
55
+ color: var(--hlx-text-color-primary);
56
+ padding: 10px;
57
+ }
58
+
59
+ .calendar-body {
60
+ padding: 10px;
61
+ font-size: 14px;
62
+ }
63
+
64
+ .calendar-week-day {
65
+ font-size: 12px;
66
+ padding-bottom: 10px;
67
+ margin-bottom: 10px;
68
+ height: 30px;
69
+ display: grid;
70
+ grid-template-columns: repeat(7, 1fr);
71
+ font-weight: 600;
72
+ border-bottom: 2px solid var(--hlx-border-color);
73
+ border-bottom-style: dashed;
74
+ }
75
+
76
+ .calendar-week-day div {
77
+ display: grid;
78
+ place-items: center;
79
+ color: var(--hlx-border-color);
80
+ }
81
+
82
+ .calendar-days {
83
+ display: grid;
84
+ grid-template-columns: repeat(7, 1fr);
85
+ gap: 2px;
86
+ color: var(--hlx-text-color-primary);
87
+ justify-items: center;
88
+ }
89
+
90
+ .calendar-days div:nth-child(1) {
91
+ color: var(--hlx-color-primary);
92
+ }
93
+ .calendar-days div:nth-child(7) {
94
+ color: var(--hlx-color-primary);
95
+ }
96
+ .calendar-days div:nth-child(8) {
97
+ color: var(--hlx-color-primary);
98
+ }
99
+ .calendar-days div:nth-child(14) {
100
+ color: var(--hlx-color-primary);
101
+ }
102
+ .calendar-days div:nth-child(15) {
103
+ color: var(--hlx-color-primary);
104
+ }
105
+ .calendar-days div:nth-child(21) {
106
+ color: var(--hlx-color-primary);
107
+ }
108
+ .calendar-days div:nth-child(22) {
109
+ color: var(--hlx-color-primary);
110
+ }
111
+ .calendar-days div:nth-child(28) {
112
+ color: var(--hlx-color-primary);
113
+ }
114
+ .calendar-days div:nth-child(29) {
115
+ color: var(--hlx-color-primary);
116
+ }
117
+ .calendar-days div:nth-child(35) {
118
+ color: var(--hlx-color-primary);
119
+ }
120
+ .calendar-days div:nth-child(36) {
121
+ color: var(--hlx-color-primary);
122
+ }
123
+ .calendar-days div {
124
+ width: 35px;
125
+ height: 35px;
126
+ display: flex;
127
+ align-items: center;
128
+ justify-content: center;
129
+ padding: 5px;
23
130
  position: relative;
24
- // margin-top: -310px;
25
- z-index: 1009;
26
- .disable-weekend {
27
- color: var(--hlx-border-color) !important;
28
- cursor: not-allowed !important;
29
- }
30
- .theme-background{
31
- background: var(--hlx-color-primary) !important;
32
- }
33
- .calendar {
34
- height: 340px;
35
- width: 310px;
36
- background-color: var(--bg-main);
37
- border-radius: 10px;
38
- padding: 5px;
39
- position: absolute;
40
- box-shadow: 0px 0px 5px #d8d8d8;
41
- overflow: hidden;
42
- /* transform: scale(1.25); */
43
- }
44
-
45
- .light .calendar {
46
- box-shadow: var(--shadow);
47
- }
48
-
49
- .calendar-header {
50
- display: flex;
51
- justify-content: space-between;
52
- align-items: center;
53
- font-size: 14px;
54
- font-weight: 600;
55
- color: var(--hlx-text-color-primary);
56
- padding: 10px;
57
- }
58
-
59
- .calendar-body {
60
- padding: 10px;
61
- font-size: 14px;
62
- }
63
-
64
- .calendar-week-day {
65
- font-size: 12px;
66
- padding-bottom: 10px;
67
- margin-bottom: 10px;
68
- height: 30px;
69
- display: grid;
70
- grid-template-columns: repeat(7, 1fr);
71
- font-weight: 600;
72
- border-bottom: 2px solid var(--hlx-border-color);
73
- border-bottom-style: dashed;
74
- }
75
-
76
- .calendar-week-day div {
77
- display: grid;
78
- place-items: center;
79
- color: var(--hlx-border-color);
80
- }
81
-
82
- .calendar-days {
83
- display: grid;
84
- grid-template-columns: repeat(7, 1fr);
85
- gap: 2px;
86
- color: var(--hlx-text-color-primary);
87
- justify-items: center;
88
- }
89
-
90
- .calendar-days div:nth-child(1) {
91
- color:var(--hlx-color-primary);
92
- }
93
- .calendar-days div:nth-child(7) {
94
- color:var(--hlx-color-primary);
95
- }
96
- .calendar-days div:nth-child(8) {
97
- color:var(--hlx-color-primary);
98
- }
99
- .calendar-days div:nth-child(14) {
100
- color:var(--hlx-color-primary);
101
- }
102
- .calendar-days div:nth-child(15) {
103
- color:var(--hlx-color-primary);
104
- }
105
- .calendar-days div:nth-child(21) {
106
- color:var(--hlx-color-primary);
107
- }
108
- .calendar-days div:nth-child(22) {
109
- color:var(--hlx-color-primary);
110
- }
111
- .calendar-days div:nth-child(28) {
112
- color:var(--hlx-color-primary);
113
- }
114
- .calendar-days div:nth-child(29) {
115
- color:var(--hlx-color-primary);
116
- }
117
- .calendar-days div:nth-child(35) {
118
- color:var(--hlx-color-primary);
119
- }
120
- .calendar-days div:nth-child(36) {
121
- color:var(--hlx-color-primary);
122
- }
123
- .calendar-days div{
124
- width: 35px;
125
- height: 35px;
126
- display: flex;
127
- align-items: center;
128
- justify-content: center;
129
- padding: 5px;
130
- position: relative;
131
- animation: to-top 1s forwards;
132
- border-radius: 50%;
133
- cursor: pointer;
134
- }
135
-
136
- .calendar-days div span {
137
- position: absolute;
138
- }
139
-
140
- .calendar-days div:hover span {
141
- transition: width 0.2s ease-in-out, height 0.2s ease-in-out;
142
- }
143
-
144
- .calendar-days div span:nth-child(1),
145
- .calendar-days div span:nth-child(3) {
146
- width: 2px;
147
- height: 0;
148
- background-color: var(--hlx-text-color-primary);
149
- }
150
-
151
- .calendar-days div:hover span:nth-child(1),
152
- .calendar-days div:hover span:nth-child(3) {
153
- height: 100%;
154
- }
155
-
156
- .calendar-days div span:nth-child(1) {
157
- bottom: 0;
158
- left: 0;
159
- }
160
-
161
- .calendar-days div span:nth-child(3) {
162
- top: 0;
163
- right: 0;
164
- }
165
-
166
- .calendar-days div span:nth-child(2),
167
- .calendar-days div span:nth-child(4) {
168
- width: 0;
169
- height: 2px;
170
- background-color: var(--hlx-text-color-primary);
171
- }
172
-
173
- .calendar-days div:hover span:nth-child(2),
174
- .calendar-days div:hover span:nth-child(4) {
175
- width: 100%;
176
- }
177
-
178
- .calendar-days div span:nth-child(2) {
179
- top: 0;
180
- left: 0;
181
- }
182
-
183
- .calendar-days div span:nth-child(4) {
184
- bottom: 0;
185
- right: 0;
186
- }
187
-
188
- .calendar-days div:hover span:nth-child(2) {
189
- transition-delay: 0.1s;
190
-
191
- }
192
-
193
- .calendar-days div:hover span:nth-child(3) {
194
- transition-delay: 0.1s;
195
-
196
- }
197
-
198
- .calendar-days div:hover span:nth-child(4) {
199
- transition-delay: 0.1s;
200
-
201
- }
202
- .calendar-day-hover:hover{
203
- background: var(--hlx-color-primary-light);
204
- border-radius: 50%;
205
- }
206
- .calendar-days div.curr-date,
207
- .calendar-days div.curr-date:hover {
208
- background-color: var(--hlx-color-primary);
209
- color: white;
210
- border-radius: 50%;
211
- }
212
-
213
- .calendar-days div.curr-date span {
214
- display: none;
215
- }
216
-
217
- .month-picker {
218
- padding: 5px 10px;
219
- border-radius: 10px;
220
- }
221
- #year {
222
- margin-right: 5px;
223
- padding: 5px 10px;
224
- border-radius: 10px;
225
- cursor: pointer;
226
- }
227
-
228
- /* .month-picker:hover {
131
+ animation: to-top 1s forwards;
132
+ border-radius: 50%;
133
+ cursor: pointer;
134
+ }
135
+
136
+ .calendar-days div span {
137
+ position: absolute;
138
+ }
139
+
140
+ .calendar-days div:hover span {
141
+ transition: width 0.2s ease-in-out, height 0.2s ease-in-out;
142
+ }
143
+
144
+ .calendar-days div span:nth-child(1),
145
+ .calendar-days div span:nth-child(3) {
146
+ width: 2px;
147
+ height: 0;
148
+ background-color: var(--hlx-text-color-primary);
149
+ }
150
+
151
+ .calendar-days div:hover span:nth-child(1),
152
+ .calendar-days div:hover span:nth-child(3) {
153
+ height: 100%;
154
+ }
155
+
156
+ .calendar-days div span:nth-child(1) {
157
+ bottom: 0;
158
+ left: 0;
159
+ }
160
+
161
+ .calendar-days div span:nth-child(3) {
162
+ top: 0;
163
+ right: 0;
164
+ }
165
+
166
+ .calendar-days div span:nth-child(2),
167
+ .calendar-days div span:nth-child(4) {
168
+ width: 0;
169
+ height: 2px;
170
+ background-color: var(--hlx-text-color-primary);
171
+ }
172
+
173
+ .calendar-days div:hover span:nth-child(2),
174
+ .calendar-days div:hover span:nth-child(4) {
175
+ width: 100%;
176
+ }
177
+
178
+ .calendar-days div span:nth-child(2) {
179
+ top: 0;
180
+ left: 0;
181
+ }
182
+
183
+ .calendar-days div span:nth-child(4) {
184
+ bottom: 0;
185
+ right: 0;
186
+ }
187
+
188
+ .calendar-days div:hover span:nth-child(2) {
189
+ transition-delay: 0.1s;
190
+ }
191
+
192
+ .calendar-days div:hover span:nth-child(3) {
193
+ transition-delay: 0.1s;
194
+ }
195
+
196
+ .calendar-days div:hover span:nth-child(4) {
197
+ transition-delay: 0.1s;
198
+ }
199
+ .calendar-day-hover:hover {
200
+ background: var(--hlx-color-primary-light);
201
+ border-radius: 50%;
202
+ }
203
+ .calendar-days div.curr-date,
204
+ .calendar-days div.curr-date:hover {
205
+ background-color: var(--hlx-color-primary);
206
+ color: white;
207
+ border-radius: 50%;
208
+ }
209
+
210
+ .calendar-days div.curr-date span {
211
+ display: none;
212
+ }
213
+
214
+ .month-picker {
215
+ padding: 5px 10px;
216
+ border-radius: 10px;
217
+ }
218
+ #year {
219
+ margin-right: 5px;
220
+ padding: 5px 10px;
221
+ border-radius: 10px;
222
+ cursor: pointer;
223
+ }
224
+
225
+ /* .month-picker:hover {
229
226
  background-color: var(--color-hover);
230
227
  border-radius: 5px;
231
228
  } */
232
- #year:hover {
233
- cursor: pointer;
234
- background-color: var(--hlx-color-primary-light);
235
- border-radius: 5px;
236
- }
237
-
238
- .year-picker {
239
- display: flex;
240
- width: 100%;
241
- align-items: center;
242
- justify-content: space-between;
243
- }
244
-
245
- .year-change {
246
- height: 30px;
247
- width: 30px;
248
- border-radius: 5px;
249
- display: grid;
250
- place-items: center;
251
- justify-items: center;
252
- align-items: center;
253
- margin: 0 10px;
254
- cursor: pointer;
255
- box-shadow: 0 0 6px rgb(226, 225, 225);
256
- i{
257
- font-size: 1.25rem;
258
- }
259
- }
260
-
261
- .year-change:hover {
262
- background-color: var(--color-hover);
263
- border-radius: 5px;
264
- }
265
-
266
- .calendar-footer {
267
- padding: 10px;
268
- display: flex;
269
- justify-content: flex-end;
270
- align-items: center;
271
- }
272
-
273
- .toggle {
274
- display: flex;
275
- }
276
-
277
- .toggle span {
278
- margin-right: 10px;
279
- color: var(--hlx-text-color-primary);
280
- }
281
-
282
- .dark-mode-switch {
283
- position: relative;
284
- width: 48px;
285
- height: 25px;
286
- border-radius: 5px;
287
- background-color: var(--bg-second);
288
- cursor: pointer;
289
- }
290
-
291
- .dark-mode-switch-ident {
292
- width: 21px;
293
- height: 21px;
294
- border-radius: 5px;
295
- background-color: var(--bg-main);
296
- position: absolute;
297
- top: 2px;
298
- left: 2px;
299
- transition: left 0.2s ease-in-out;
300
- }
301
-
302
- .dark .dark-mode-switch .dark-mode-switch-ident {
303
- top: 2px;
304
- left: calc(2px + 50%);
305
- }
306
-
307
- .month-list {
308
- position: absolute;
309
- width: 100%;
310
- height: 100%;
311
- top: 0;
312
- left: 0;
313
- background-color: var(--bg-main);
314
- padding: 20px;
315
- grid-template-columns: 70px 70px 70px;
316
- gap: 28px;
317
- display: grid;
318
- transform: scale(1.5);
319
- visibility: hidden;
320
- pointer-events: none;
321
- }
322
-
323
- .month-list.show {
324
- transform: scale(1);
325
- visibility: visible;
326
- pointer-events: visible;
327
- transition: all 0.2s ease-in-out;
328
- overflow-y: auto;
329
- }
330
-
331
- .month-list > div {
332
- display: grid;
333
- place-items: center;
334
- }
335
-
336
- .month-list > div > div {
337
- font-size: 14px;
338
- width: 100%;
339
- padding: 5px 5px;
340
- border-radius: 5px;
341
- text-align: center;
342
- cursor: pointer;
343
- color: var(--hlx-text-color-primary);
344
- }
345
-
346
- .month-list > div > div:hover {
347
- background-color: var(--color-hover);
348
- border-radius: 5px;
349
- }
229
+ #year:hover {
230
+ cursor: pointer;
231
+ background-color: var(--hlx-color-primary-light);
232
+ border-radius: 5px;
233
+ }
234
+
235
+ .year-picker {
236
+ display: flex;
237
+ width: 100%;
238
+ align-items: center;
239
+ justify-content: space-between;
240
+ }
241
+
242
+ .year-change {
243
+ height: 30px;
244
+ width: 30px;
245
+ border-radius: 5px;
246
+ display: grid;
247
+ place-items: center;
248
+ justify-items: center;
249
+ align-items: center;
250
+ margin: 0 10px;
251
+ cursor: pointer;
252
+ box-shadow: 0 0 6px rgb(226, 225, 225);
253
+ i {
254
+ font-size: 1.25rem;
255
+ }
256
+ }
257
+
258
+ .year-change:hover {
259
+ background-color: var(--color-hover);
260
+ border-radius: 5px;
261
+ }
262
+
263
+ .calendar-footer {
264
+ padding: 10px;
265
+ display: flex;
266
+ justify-content: flex-end;
267
+ align-items: center;
268
+ }
269
+
270
+ .toggle {
271
+ display: flex;
272
+ }
273
+
274
+ .toggle span {
275
+ margin-right: 10px;
276
+ color: var(--hlx-text-color-primary);
277
+ }
278
+
279
+ .dark-mode-switch {
280
+ position: relative;
281
+ width: 48px;
282
+ height: 25px;
283
+ border-radius: 5px;
284
+ background-color: var(--bg-second);
285
+ cursor: pointer;
286
+ }
287
+
288
+ .dark-mode-switch-ident {
289
+ width: 21px;
290
+ height: 21px;
291
+ border-radius: 5px;
292
+ background-color: var(--bg-main);
293
+ position: absolute;
294
+ top: 2px;
295
+ left: 2px;
296
+ transition: left 0.2s ease-in-out;
297
+ }
298
+
299
+ .dark .dark-mode-switch .dark-mode-switch-ident {
300
+ top: 2px;
301
+ left: calc(2px + 50%);
302
+ }
303
+
304
+ .month-list {
305
+ position: absolute;
306
+ width: 100%;
307
+ height: 100%;
308
+ top: 0;
309
+ left: 0;
310
+ background-color: var(--bg-main);
311
+ padding: 20px;
312
+ grid-template-columns: 70px 70px 70px;
313
+ gap: 28px;
314
+ display: grid;
315
+ transform: scale(1.5);
316
+ visibility: hidden;
317
+ pointer-events: none;
318
+ }
319
+
320
+ .month-list.show {
321
+ transform: scale(1);
322
+ visibility: visible;
323
+ pointer-events: visible;
324
+ transition: all 0.2s ease-in-out;
325
+ overflow-y: auto;
326
+ }
327
+
328
+ .month-list > div {
329
+ display: grid;
330
+ place-items: center;
331
+ }
332
+
333
+ .month-list > div > div {
334
+ font-size: 14px;
335
+ width: 100%;
336
+ padding: 5px 5px;
337
+ border-radius: 5px;
338
+ text-align: center;
339
+ cursor: pointer;
340
+ color: var(--hlx-text-color-primary);
341
+ }
342
+
343
+ .month-list > div > div:hover {
344
+ background-color: var(--color-hover);
345
+ border-radius: 5px;
346
+ }
350
347
  }
351
348
 
352
349
  @keyframes to-top {
353
- 0% {
354
- transform: translateY(100%);
355
- opacity: 0;
356
- }
357
- 100% {
358
- transform: translateY(0);
359
- opacity: 1;
360
- }
350
+ 0% {
351
+ transform: translateY(100%);
352
+ opacity: 0;
353
+ }
354
+ 100% {
355
+ transform: translateY(0);
356
+ opacity: 1;
357
+ }
361
358
  }