@asd20/ui 3.2.358 → 3.2.361
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
|
@@ -50,10 +50,9 @@
|
|
|
50
50
|
</transition>
|
|
51
51
|
<transition name="slide">
|
|
52
52
|
<asd20-action-menu
|
|
53
|
-
class="mobile-actions"
|
|
54
53
|
v-show="
|
|
55
|
-
(menuOpen && (mq === 'sm' || mq === 'md')) ||
|
|
56
|
-
mq === 'lg' || mq === 'xl'
|
|
54
|
+
(menuOpen && (mq === 'sm' || mq === 'md') && isLoaded) ||
|
|
55
|
+
((mq === 'lg' || mq === 'xl') && isLoaded)
|
|
57
56
|
"
|
|
58
57
|
:items="actionItems"
|
|
59
58
|
:active="menuOpen"
|
|
@@ -102,6 +101,7 @@ export default {
|
|
|
102
101
|
data: () => ({
|
|
103
102
|
keyboardTriggeredLastAction: false,
|
|
104
103
|
desktop: false,
|
|
104
|
+
isLoaded: false,
|
|
105
105
|
}),
|
|
106
106
|
watch: {
|
|
107
107
|
menuOpen: function(val) {
|
|
@@ -120,6 +120,7 @@ export default {
|
|
|
120
120
|
},
|
|
121
121
|
mounted() {
|
|
122
122
|
this.desktop = window.innerWidth >= 1024
|
|
123
|
+
this.isLoaded = true
|
|
123
124
|
},
|
|
124
125
|
methods: {
|
|
125
126
|
onKeyboardToggleEvent(event) {
|
|
@@ -286,6 +286,12 @@ export default {
|
|
|
286
286
|
flex-shrink: 0;
|
|
287
287
|
overflow: hidden;
|
|
288
288
|
margin-top: space(2.25);
|
|
289
|
+
.asd20-page-header::after {
|
|
290
|
+
left: 0;
|
|
291
|
+
}
|
|
292
|
+
.asd20-page-header {
|
|
293
|
+
margin-bottom: space(0);
|
|
294
|
+
}
|
|
289
295
|
.notification-group--floating {
|
|
290
296
|
position: absolute;
|
|
291
297
|
right: space(0.5);
|
|
@@ -301,9 +307,9 @@ export default {
|
|
|
301
307
|
background-position-y: top;
|
|
302
308
|
padding: space(1) 0;
|
|
303
309
|
}
|
|
304
|
-
.logins-tab-bar {
|
|
305
|
-
|
|
306
|
-
}
|
|
310
|
+
// .logins-tab-bar {
|
|
311
|
+
// padding: space(2) 0 0 0;
|
|
312
|
+
// }
|
|
307
313
|
.logins-list {
|
|
308
314
|
display: flex;
|
|
309
315
|
flex-direction: column;
|
|
@@ -337,12 +343,6 @@ export default {
|
|
|
337
343
|
.notification-group--inline {
|
|
338
344
|
margin: space(2) space(3) space(1) space(3);
|
|
339
345
|
}
|
|
340
|
-
.asd20-page-header {
|
|
341
|
-
margin-bottom: space(0);
|
|
342
|
-
}
|
|
343
|
-
.asd20-page-header::after {
|
|
344
|
-
left: 0;
|
|
345
|
-
}
|
|
346
346
|
.asd20-page-content {
|
|
347
347
|
margin-top: space(1);
|
|
348
348
|
}
|