import { VersionInfo } from '@start9labs/start-sdk' // Login page mobile/PWA conformance โ€” the one surface the v95 mobile redesign skipped. // CSS-only: .login-container 100vh โ†’ 100dvh (dynamic viewport; the centered card no longer // tucks under the iOS standalone status bar), plus a <768px media query adding 16px screen // gutters + env(safe-area-inset) top/bottom clearance + touch-sized fields (inputs 46px/15px, // button 46px) and a full-bleed card on small phones; the login card also gains the ยง4 card // depth shadow to match .section. No markup/JS/schema change; desktop login unchanged. export const v_0_1_0_96 = VersionInfo.of({ version: '0.1.0:96', releaseNotes: { en_US: [ 'Mobile polish: the login screen is now touch-native and PWA-safe โ€” proper screen', 'gutters, safe-area clearance so the card never hides under the iPhone status bar,', 'and larger tap targets. Desktop login is unchanged.', ].join(' '), }, migrations: { up: async () => {}, down: async () => {} }, })