@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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eox/pages-theme-eox",
3
- "version": "0.10.0",
3
+ "version": "0.10.2",
4
4
  "type": "module",
5
5
  "description": "Vitepress Theme with EOX branding",
6
6
  "main": "src/index.js",
@@ -152,7 +152,7 @@ if (!import.meta.env.SSR) {
152
152
  <style>
153
153
  .top-nav {
154
154
  position: sticky;
155
- z-index: 2;
155
+ z-index: 100;
156
156
  top: 0;
157
157
  background: var(--surface);
158
158
  box-shadow:
@@ -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: 999999;
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;