@asd20/ui 3.2.825 → 3.2.827

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.825",
8
+ "version": "3.2.827",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -91,6 +91,7 @@ export default {
91
91
  --width: 90%;
92
92
  --height: 10px; // Increased height for better visibility
93
93
  top: 50vh;
94
+ right: 5%;
94
95
  width: 90%;
95
96
  height: 10px;
96
97
  margin: auto;
@@ -2,11 +2,10 @@
2
2
  <div class="asd20-district-home-template">
3
3
  <!-- Skip Nav -->
4
4
  <div>
5
- <div v-if="!isAuthenticated">
6
- <client-only>
7
- <asd20-skeleton preset="middlebar"/>
8
- </client-only>
9
- </div>
5
+ <!-- Use '_' to get at global prop mixin values -->
6
+ <client-only v-if="!_isAuthenticated">
7
+ <asd20-skeleton preset="middlebar" />
8
+ </client-only>
10
9
  <div v-else>
11
10
  <!-- Skip Nav -->
12
11
  <asd20-skip-to />
@@ -275,7 +274,6 @@ import Asd20TertiaryHeader from '../../../components/organisms/Asd20TertiaryHead
275
274
  import Asd20LanguageTranslation from '../../molecules/Asd20LanguageTranslation'
276
275
  import globalPropMixinFactory from '../../../mixins/globalPropMixinFactory.js'
277
276
 
278
-
279
277
  export default {
280
278
  name: 'Asd20DistrictHomeTemplate',
281
279