make nav bar bigger
This commit is contained in:
parent
4a91f98ba3
commit
fe8010cb80
3 changed files with 26 additions and 11 deletions
15
Justfile
Normal file
15
Justfile
Normal 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
|
||||||
|
|
@ -6,7 +6,7 @@ use tauri::{
|
||||||
WindowEvent,
|
WindowEvent,
|
||||||
};
|
};
|
||||||
|
|
||||||
const TOOLBAR_HEIGHT: f64 = 44.0;
|
const TOOLBAR_HEIGHT: f64 = 60.0;
|
||||||
|
|
||||||
#[tauri::command]
|
#[tauri::command]
|
||||||
fn back(app: tauri::AppHandle) {
|
fn back(app: tauri::AppHandle) {
|
||||||
|
|
|
||||||
|
|
@ -17,8 +17,8 @@
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 6px;
|
gap: 8px;
|
||||||
padding: 0 8px;
|
padding: 0 10px;
|
||||||
background: #232329;
|
background: #232329;
|
||||||
border-bottom: 1px solid #34343c;
|
border-bottom: 1px solid #34343c;
|
||||||
font-family: system-ui, -apple-system, sans-serif;
|
font-family: system-ui, -apple-system, sans-serif;
|
||||||
|
|
@ -27,13 +27,13 @@
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
button {
|
button {
|
||||||
width: 32px;
|
width: 42px;
|
||||||
height: 32px;
|
height: 42px;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 6px;
|
border-radius: 8px;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
color: #d4d4d8;
|
color: #d4d4d8;
|
||||||
font-size: 18px;
|
font-size: 22px;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
flex: none;
|
flex: none;
|
||||||
|
|
@ -46,13 +46,13 @@
|
||||||
}
|
}
|
||||||
#url {
|
#url {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
height: 32px;
|
height: 42px;
|
||||||
padding: 0 12px;
|
padding: 0 16px;
|
||||||
border: 1px solid #34343c;
|
border: 1px solid #34343c;
|
||||||
border-radius: 16px;
|
border-radius: 21px;
|
||||||
background: #1b1b1f;
|
background: #1b1b1f;
|
||||||
color: #e4e4e7;
|
color: #e4e4e7;
|
||||||
font-size: 13px;
|
font-size: 15px;
|
||||||
outline: none;
|
outline: none;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue