@mundogamernetwork/shared-ui 1.17.11 → 1.17.12

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.
@@ -165,8 +165,14 @@ onMounted(() => {
165
165
  top: 0;
166
166
  right: 0;
167
167
  bottom: 0;
168
+ // The wrapper spans the full viewport height so the open panel can stretch,
169
+ // but when closed only the toggler pill is visible. Without this the empty
170
+ // column above/below it swallowed clicks meant for the header avatar and
171
+ // the bottom-right app banner close button.
172
+ pointer-events: none;
168
173
 
169
174
  .sidebar {
175
+ pointer-events: auto;
170
176
  display: inline-flex;
171
177
  padding: 12px 24px;
172
178
  align-items: center;
@@ -310,6 +316,7 @@ onMounted(() => {
310
316
  height: 100vh;
311
317
  background-color: rgba(0, 0, 0, 0.5);
312
318
  z-index: 35;
319
+ pointer-events: auto;
313
320
  border: none;
314
321
  display: none;
315
322
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mundogamernetwork/shared-ui",
3
- "version": "1.17.11",
3
+ "version": "1.17.12",
4
4
  "description": "Mundo Gamer Network - Shared UI Layer (Nuxt 3)",
5
5
  "type": "module",
6
6
  "main": "./nuxt.config.ts",