@cr8rcho/alkahest 0.1.18 → 0.1.19

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.
@@ -68,8 +68,9 @@
68
68
  [data-theme="light"] #theme-toggle .i-sun { display: none; } [data-theme="light"] #theme-toggle .i-moon { display: block; }
69
69
  /* Action cluster pinned to the right: Display · Fit · theme */
70
70
  .toolbar-actions { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; }
71
- .brand { font-weight: 700; letter-spacing: 0.3px; white-space: nowrap; }
72
- .brand .sub { color: var(--muted); font-weight: 400; margin-left: 6px; }
71
+ /* Brand matches the web service header (account/landing): 16px / 650 / -0.01em */
72
+ .brand { font-size: 16px; font-weight: 650; letter-spacing: -0.01em; white-space: nowrap; }
73
+ .brand .sub { color: var(--muted); font-weight: 400; font-size: 13px; letter-spacing: 0; margin-left: 6px; }
73
74
  .counts { color: var(--muted); white-space: nowrap; }
74
75
  /* compact counts (mobile only): node-shape icons + number — ○ screen / ▢ resource, matching the legend */
75
76
  .counts-min { display: none; }
@@ -160,10 +161,14 @@
160
161
  border-radius: 16px 16px 0 0; border-left: none; border-right: none; border-bottom: none;
161
162
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.45);
162
163
  padding: 26px 18px 22px; z-index: 41;
163
- transform: translateY(101%); transition: transform 0.24s ease;
164
164
  display: block; /* always present; slid off-screen until open */
165
+ transform: translateY(101%);
166
+ /* visibility:hidden when closed so the upward box-shadow doesn't bleed a band
167
+ at the bottom of the screen; delayed off so the slide-out still animates. */
168
+ visibility: hidden;
169
+ transition: transform 0.24s ease, visibility 0s linear 0.24s;
165
170
  }
166
- .display-menu.open .display-pop { transform: translateY(0); }
171
+ .display-menu.open .display-pop { transform: translateY(0); visibility: visible; transition: transform 0.24s ease; }
167
172
  .display-pop::before { content: ""; position: absolute; top: 9px; left: 50%; width: 40px; height: 4px; margin-left: -20px; background: var(--line); border-radius: 2px; }
168
173
  .disp-row { padding: 9px 0; font-size: 14px; }
169
174
  .disp-legend { font-size: 13px; gap: 8px; }
@@ -178,10 +183,12 @@
178
183
  border-radius: 14px 14px 0 0;
179
184
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.45);
180
185
  transform: translateY(101%);
181
- transition: transform 0.22s ease;
186
+ /* hidden when closed so the upward shadow doesn't peek at the screen bottom */
187
+ visibility: hidden;
188
+ transition: transform 0.22s ease, visibility 0s linear 0.22s;
182
189
  padding-top: 30px;
183
190
  }
184
- body.panel-open #panel { transform: translateY(0); }
191
+ body.panel-open #panel { transform: translateY(0); visibility: visible; transition: transform 0.22s ease; }
185
192
  .panel-close {
186
193
  display: block;
187
194
  position: absolute;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cr8rcho/alkahest",
3
- "version": "0.1.18",
3
+ "version": "0.1.19",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },