make nav bar bigger

This commit is contained in:
Philip Peterson 2026-08-25 02:57:12 -08:00
parent 4a91f98ba3
commit fe8010cb80
3 changed files with 26 additions and 11 deletions

15
Justfile Normal file
View file

@ -0,0 +1,15 @@
# Quintodrome desktop app
# Run the desktop app (builds the Navidrome sidecar, then `cargo run`).
# Requires Go >= 1.26 and Node >= 24 (see .nvmrc) for the sidecar build.
run:
./desktop/scripts/build.sh --skip-tauri
cd desktop/src-tauri && cargo run
# Build the packaged .app (desktop/src-tauri/target/release/bundle/).
bundle:
./desktop/scripts/build.sh
# Build only the Navidrome sidecar binary.
sidecar:
./desktop/scripts/build.sh --skip-tauri

View file

@ -6,7 +6,7 @@ use tauri::{
WindowEvent,
};
const TOOLBAR_HEIGHT: f64 = 44.0;
const TOOLBAR_HEIGHT: f64 = 60.0;
#[tauri::command]
fn back(app: tauri::AppHandle) {

View file

@ -17,8 +17,8 @@
height: 100vh;
display: flex;
align-items: center;
gap: 6px;
padding: 0 8px;
gap: 8px;
padding: 0 10px;
background: #232329;
border-bottom: 1px solid #34343c;
font-family: system-ui, -apple-system, sans-serif;
@ -27,13 +27,13 @@
overflow: hidden;
}
button {
width: 32px;
height: 32px;
width: 42px;
height: 42px;
border: none;
border-radius: 6px;
border-radius: 8px;
background: transparent;
color: #d4d4d8;
font-size: 18px;
font-size: 22px;
line-height: 1;
cursor: pointer;
flex: none;
@ -46,13 +46,13 @@
}
#url {
flex: 1;
height: 32px;
padding: 0 12px;
height: 42px;
padding: 0 16px;
border: 1px solid #34343c;
border-radius: 16px;
border-radius: 21px;
background: #1b1b1f;
color: #e4e4e7;
font-size: 13px;
font-size: 15px;
outline: none;
min-width: 0;
}