@mundogamernetwork/shared-ui 1.1.72 → 1.1.73

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mundogamernetwork/shared-ui",
3
- "version": "1.1.72",
3
+ "version": "1.1.73",
4
4
  "description": "Mundo Gamer Network - Shared UI Layer (Nuxt 3)",
5
5
  "type": "module",
6
6
  "main": "./nuxt.config.ts",
@@ -980,17 +980,21 @@ onMounted(async () => {
980
980
 
981
981
  .card-time {
982
982
  display: flex;
983
- height: 80px;
984
- padding: 24px;
983
+ min-height: 80px;
984
+ padding: 12px 8px;
985
985
  flex-direction: column;
986
986
  align-items: center;
987
- gap: 6px;
987
+ justify-content: center;
988
+ gap: 4px;
988
989
  background-color: var(--button-secondary-default-bg);
989
990
  font-size: 28px;
991
+ font-family: inherit;
990
992
  color: var(--key-accent, var(--primary, var(--key-accent, var(--primary, #D297FF))));
991
993
  font-weight: 700;
992
- width: -webkit-fill-available;
993
- span { font-size: 10px; color: var(--secondary-info-fg); font-weight: 400; }
994
+ flex: 1;
995
+ min-width: 0;
996
+ overflow: hidden;
997
+ span { font-size: 10px; color: var(--secondary-info-fg); font-weight: 400; white-space: nowrap; }
994
998
  }
995
999
  }
996
1000