···1212# to make the lib name unique and wouldn't conflict with the bin name.
1313# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
1414name = "peek_save_lib"
1515-crate-type = ["staticlib", "rlib"]
1515+crate-type = ["staticlib", "cdylib", "rlib"]
16161717[build-dependencies]
1818tauri-build = { version = "2", features = [] }
+5-2
backend/tauri-mobile/src/App.css
···24862486 align-items: center;
24872487 padding: 0.5rem;
24882488 padding-top: env(safe-area-inset-top, 4px);
24892489+ /* Ensure safe area padding at bottom when keyboard is hidden */
24902490+ padding-bottom: max(env(safe-area-inset-bottom, 0px), 0.5rem);
24892491 /* Prevent iOS from scrolling the viewport when keyboard appears */
24902492 overflow: hidden;
24912493 overscroll-behavior: contain;
···26862688 padding-right: 32px;
26872689}
2688269026892689-/* URL editor content wrapper - matches resizable-input-wrapper flex behavior
26902690- so the URL editor has the same DOM structure as note/image editors */
26912691+/* URL editor content wrapper - fixed size, does not flex-grow.
26922692+ Tags section fills remaining space below. */
26912693.editor-url-content-wrapper {
26942694+ flex-shrink: 0;
26922695 align-items: stretch;
26932696}
26942697