@mundogamernetwork/shared-ui 1.16.15 → 1.16.16

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.
@@ -136,8 +136,16 @@ onMounted(() => {
136
136
  <style scoped lang="scss">
137
137
  #sidebar-logo {
138
138
  z-index: 36;
139
- position: absolute;
139
+ // fixed (not absolute) + all four insets pinned: absolute with no `top`
140
+ // falls back to its "static position" — roughly where it would sit in
141
+ // normal flow — so on a real page with content above it in the DOM, the
142
+ // whole panel renders far down the page instead of pinned to the
143
+ // viewport's right edge, and its `height: 100%` then has no definite
144
+ // containing-block height to resolve against, stretching the page.
145
+ position: fixed;
146
+ top: 0;
140
147
  right: 0;
148
+ bottom: 0;
141
149
 
142
150
  .sidebar {
143
151
  display: inline-flex;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mundogamernetwork/shared-ui",
3
- "version": "1.16.15",
3
+ "version": "1.16.16",
4
4
  "description": "Mundo Gamer Network - Shared UI Layer (Nuxt 3)",
5
5
  "type": "module",
6
6
  "main": "./nuxt.config.ts",