@saooti/octopus-sdk 40.2.3 → 40.2.4
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
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
:class="platformEducation ? 'education-logo' : ''"
|
|
30
30
|
/>
|
|
31
31
|
</router-link>
|
|
32
|
-
<h1 v-if="titleIsDisplayed" class="text-
|
|
32
|
+
<h1 v-if="titleIsDisplayed" class="text-truncate m-0 align-self-center">
|
|
33
33
|
{{ titleDisplay }}
|
|
34
34
|
</h1>
|
|
35
35
|
<div
|
|
@@ -73,7 +73,6 @@
|
|
|
73
73
|
<nav role="navigation" :aria-label="$t('Site menu')">
|
|
74
74
|
<ul class="d-flex">
|
|
75
75
|
<template v-for="link in routerLinkArray" :key="link.routeName">
|
|
76
|
-
<transition name="fade">
|
|
77
76
|
<li v-if="link.condition" class="li-style-none">
|
|
78
77
|
<router-link
|
|
79
78
|
v-show="!isPhone"
|
|
@@ -86,7 +85,6 @@
|
|
|
86
85
|
{{ link.title }}
|
|
87
86
|
</router-link>
|
|
88
87
|
</li>
|
|
89
|
-
</transition>
|
|
90
88
|
</template>
|
|
91
89
|
</ul>
|
|
92
90
|
</nav>
|
|
@@ -342,18 +340,6 @@ export default defineComponent({
|
|
|
342
340
|
max-width: 30px !important;
|
|
343
341
|
}
|
|
344
342
|
}
|
|
345
|
-
.text-fadein{
|
|
346
|
-
animation: fadein 0.3s ease-in-out;
|
|
347
|
-
}
|
|
348
|
-
.fade-enter-active, .fade-leave-active {
|
|
349
|
-
transition: opacity 0.3s;
|
|
350
|
-
@starting-style {
|
|
351
|
-
opacity: 0;
|
|
352
|
-
}
|
|
353
|
-
}
|
|
354
|
-
.fade-enter, .fade-leave-to {
|
|
355
|
-
opacity: 0;
|
|
356
|
-
}
|
|
357
343
|
}
|
|
358
344
|
}
|
|
359
345
|
</style>
|