@asd20/ui 3.2.766 → 3.2.767

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/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.766",
8
+ "version": "3.2.767",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -156,6 +156,27 @@ export default {
156
156
  // botom: space(-0.74);
157
157
  }
158
158
  }
159
+ @keyframes slide_left {
160
+ from {
161
+ opacity: 0;
162
+ margin-left: 200px;
163
+ }
164
+ to {
165
+ opacity: 1;
166
+ margin-left: 0;
167
+ }
168
+ }
169
+
170
+ @keyframes slide_left2 {
171
+ from {
172
+ opacity: 0;
173
+ margin-left: 100px;
174
+ }
175
+ to {
176
+ opacity: 1;
177
+ margin-left: 0;
178
+ }
179
+ }
159
180
 
160
181
  @media (min-width: 667px) {
161
182
  .asd20-video-header-content {
@@ -200,6 +221,7 @@ export default {
200
221
  @include fluid-type($base-font-size * 1.15, $base-font-size * 1.5);
201
222
  color: var(--color__accent-s10);
202
223
  border-bottom: none;
224
+ animation: slide_left2 1.25s ease-in-out 0.75s both;
203
225
  }
204
226
  }
205
227
  &::after {
@@ -318,6 +318,17 @@ export default {
318
318
  }
319
319
  }
320
320
 
321
+ @keyframes slide_right {
322
+ from {
323
+ opacity: 0;
324
+ margin-left: -200px;
325
+ }
326
+ to {
327
+ opacity: 1;
328
+ margin-left: 0;
329
+ }
330
+ }
331
+
321
332
  @media (min-width: 768px) {
322
333
  .asd20-district-video-template {
323
334
  .asd20-video-header {