From 15424eee84c7de72c57e5aa1946493512d9ce7a6 Mon Sep 17 00:00:00 2001 From: PandaDEV <70103896+0PandaDEV@users.noreply.github.com> Date: Mon, 26 Aug 2024 17:22:23 +1000 Subject: [PATCH] fixed space between icons and text preview --- assets/css/style.scss | 2 +- src-tauri/src/main.rs | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/assets/css/style.scss b/assets/css/style.scss index 9ef9d32..94f77e8 100644 --- a/assets/css/style.scss +++ b/assets/css/style.scss @@ -105,7 +105,7 @@ body, padding: 10px; padding-inline: 10px; letter-spacing: 0.5px; - gap: 16px; + gap: 10px; overflow: hidden; text-overflow: clip; white-space: nowrap; diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index d55dc7e..a1f0b98 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -30,7 +30,8 @@ fn main() { ) .setup(|app| { let app_handle = app.handle().clone(); - + + #[cfg(not(target_os = "macos"))] api::hotkeys::setup(app_handle.clone()); api::tray::setup(app)?; api::database::setup(app)?;