@explorer-1/vue 0.2.64 → 0.2.65

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@explorer-1/vue",
3
- "version": "0.2.64",
3
+ "version": "0.2.65",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -14,7 +14,7 @@
14
14
  :class="{ 'bg-gradient-to-r from-black to-primary bg-transparent to-90% text-white': invert }"
15
15
  >
16
16
  <div
17
- :class="`nav-secondary-container lg:container lg:px-0 lg:whitespace-normal lg:overflow-visible relative px-4 pb-0 mx-auto overflow-x-auto text-sm font-medium whitespace-nowrap ${invert ? 'border-0' : 'border-t border-gray-mid text-gray-mid-dark border-opacity-50'}`"
17
+ :class="`nav-secondary-container edu:border-0 lg:container lg:px-0 lg:whitespace-normal lg:overflow-visible relative px-4 pb-0 mx-auto overflow-x-auto text-sm font-medium whitespace-nowrap ${invert ? 'border-0' : 'border-t border-gray-mid text-gray-mid-dark border-opacity-50'}`"
18
18
  >
19
19
  <div class="lg:ml-0 2xl:-mr-3 lg:justify-end flex -ml-3">
20
20
  <template v-for="(item, index) in theBreadcrumb">
@@ -179,7 +179,7 @@ export default defineComponent({
179
179
  <style lang="scss">
180
180
  .NavSecondary {
181
181
  top: -1px; // for intersection observer to work
182
- @apply sticky z-40 w-full bg-white border-b edu:border-0 border-gray-mid border-opacity-0 transition-border-opacity duration-150 edu:duration-300 ease-in;
182
+ @apply sticky z-40 w-full bg-white border-b border-gray-mid border-opacity-0 transition-border-opacity duration-150 edu:duration-300 ease-in;
183
183
  @apply hidden;
184
184
  @screen lg {
185
185
  @apply block;
@@ -191,7 +191,8 @@ export default defineComponent({
191
191
  }
192
192
  }
193
193
 
194
- &.-is-sticky {
194
+ &.-is-sticky,
195
+ &.-is-sticky-offset {
195
196
  @apply border-gray-mid border-opacity-50;
196
197
  }
197
198