@mundogamernetwork/shared-ui 1.14.4 → 1.14.5

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.
@@ -190,10 +190,32 @@ const handleLogout = async () => {
190
190
  font-weight: 400;
191
191
  }
192
192
 
193
+ // Self-contained styling, not a host `.btn.primary` Bootstrap class:
194
+ // this component ships to hosts that don't all load Bootstrap (Shop
195
+ // doesn't), so relying on it left the login button rendering as a
196
+ // bare unstyled link there. Same color tokens the rest of this file
197
+ // already falls back through (see .plans-pricing-link below).
198
+ a.btn.primary {
199
+ display: block;
200
+ text-align: center;
201
+ padding: 0.625rem 1rem;
202
+ background: var(--highlight-color, var(--header-active-fg, var(--active)));
203
+ color: var(--header-ui-config-bg, #fff);
204
+ text-decoration: none;
205
+
206
+ &:hover {
207
+ opacity: 0.85;
208
+ }
209
+ }
210
+
193
211
  & > div > p {
194
212
  font-size: 15px !important;
195
213
  font-weight: 400;
196
214
  color: var(--sidebar-menus-fg);
215
+
216
+ a {
217
+ color: var(--highlight-color, var(--header-active-fg, var(--active)));
218
+ }
197
219
  }
198
220
  }
199
221
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mundogamernetwork/shared-ui",
3
- "version": "1.14.4",
3
+ "version": "1.14.5",
4
4
  "description": "Mundo Gamer Network - Shared UI Layer (Nuxt 3)",
5
5
  "type": "module",
6
6
  "main": "./nuxt.config.ts",