@eox/pages-theme-eox 0.10.0 → 0.10.2
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/config.mjs +1 -1
- package/package.json +1 -1
- package/src/components/NavBar.vue +1 -1
- package/src/components/NewsBanner.vue +1 -1
package/config.mjs
CHANGED
|
@@ -10,7 +10,7 @@ export default async (brandId = "eox") => {
|
|
|
10
10
|
register(pathToFileURL(path.join(__dirname, "./src/https-hooks.mjs")));
|
|
11
11
|
|
|
12
12
|
// Load the remote brand configuration
|
|
13
|
-
const brand = await import(`https://hub-brands.eox.at/${brandId}/config.mjs`);
|
|
13
|
+
const brand = await import(`https://cdn-hub-brands.ext.eox.at/${brandId}/config.mjs`);
|
|
14
14
|
|
|
15
15
|
// Load the base VitePress configuration
|
|
16
16
|
const vitepressConfig = await import("./src/vitepressConfig.mjs");
|
package/package.json
CHANGED
|
@@ -14,7 +14,7 @@ const props = defineProps(["content"]);
|
|
|
14
14
|
.news-banner {
|
|
15
15
|
position: fixed;
|
|
16
16
|
top: calc(var(--vp-nav-height) - 2px);
|
|
17
|
-
z-index:
|
|
17
|
+
z-index: 99;
|
|
18
18
|
background: color-mix(in srgb, var(--primary) 70%, transparent) !important;
|
|
19
19
|
width: 100%;
|
|
20
20
|
transition: all 0.25s ease;
|