@newschools/sdk 0.1.1 → 0.1.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.
@@ -74,12 +74,8 @@ defineProps<Props>();
74
74
  /* ============================================ */
75
75
 
76
76
  .ns-org-hero__glass-container {
77
- /* Fill parent container */
78
77
  width: 100%;
79
- height: 100%;
80
- max-width: 100%;
81
- max-height: 100%;
82
-
78
+ height: calc(100dvh - var(--ns-spacing-2xl));
83
79
  /* Glassmorphism effect */
84
80
  background: rgba(255, 255, 255, 0.08);
85
81
  backdrop-filter: blur(20px);
@@ -115,9 +111,8 @@ defineProps<Props>();
115
111
  overflow: hidden;
116
112
  position: relative;
117
113
 
118
- /* Mobile: full height minus other elements */
119
- min-height: 60vh;
120
- flex: 1;
114
+ /* Mobile: ensure minimum height for empty state */
115
+ min-height: 100%;
121
116
 
122
117
  background: linear-gradient(
123
118
  180deg,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@newschools/sdk",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "New Schools SDK - Multi-framework components and modules for integrating New Schools learning content",
5
5
  "type": "module",
6
6
  "main": "./nuxt/src/module.ts",