@asd20/ui 3.2.824 → 3.2.826
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
|
@@ -86,36 +86,20 @@ export default {
|
|
|
86
86
|
width: 60%;
|
|
87
87
|
}
|
|
88
88
|
}
|
|
89
|
-
&--
|
|
90
|
-
|
|
91
|
-
--
|
|
89
|
+
&--middlebar {
|
|
90
|
+
position: absolute;
|
|
91
|
+
--width: 90%;
|
|
92
|
+
--height: 10px; // Increased height for better visibility
|
|
93
|
+
top: 50vh;
|
|
94
|
+
right: 5%;
|
|
95
|
+
width: 90%;
|
|
96
|
+
height: 10px;
|
|
97
|
+
margin: auto;
|
|
92
98
|
border-radius: var(--website-shape__radius);
|
|
93
|
-
&__content {
|
|
94
|
-
min-height: 10vh;
|
|
95
|
-
}
|
|
96
|
-
&::before,
|
|
97
|
-
&::after {
|
|
98
|
-
content: '';
|
|
99
|
-
display: block;
|
|
100
|
-
position: absolute;
|
|
101
|
-
background: white;
|
|
102
|
-
left: space(1);
|
|
103
|
-
z-index: 1;
|
|
104
|
-
border-radius: 3px;
|
|
105
|
-
}
|
|
106
|
-
&::before {
|
|
107
|
-
bottom: space(2);
|
|
108
|
-
height: space(0.5);
|
|
109
|
-
width: 80%;
|
|
110
|
-
}
|
|
111
|
-
&::after {
|
|
112
|
-
bottom: space(1);
|
|
113
|
-
height: space(0.5);
|
|
114
|
-
width: 60%;
|
|
115
|
-
}
|
|
116
99
|
}
|
|
117
100
|
}
|
|
118
101
|
|
|
102
|
+
|
|
119
103
|
@keyframes skeleton {
|
|
120
104
|
0% {
|
|
121
105
|
background-position: 120% 100%;
|
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
<div class="asd20-district-home-template">
|
|
3
3
|
<!-- Skip Nav -->
|
|
4
4
|
<div>
|
|
5
|
-
<
|
|
5
|
+
<client-only v-if="!isAuthenticated">
|
|
6
|
+
<asd20-skeleton preset="middlebar" />
|
|
7
|
+
</client-only>
|
|
6
8
|
<div v-else>
|
|
7
9
|
<!-- Skip Nav -->
|
|
8
10
|
<asd20-skip-to />
|
|
@@ -271,7 +273,6 @@ import Asd20TertiaryHeader from '../../../components/organisms/Asd20TertiaryHead
|
|
|
271
273
|
import Asd20LanguageTranslation from '../../molecules/Asd20LanguageTranslation'
|
|
272
274
|
import globalPropMixinFactory from '../../../mixins/globalPropMixinFactory.js'
|
|
273
275
|
|
|
274
|
-
|
|
275
276
|
export default {
|
|
276
277
|
name: 'Asd20DistrictHomeTemplate',
|
|
277
278
|
|