From 52b4ea16c8cf0b16ef5063213157207c1f22d45f Mon Sep 17 00:00:00 2001 From: catto Date: Sun, 21 Apr 2024 14:34:59 +0200 Subject: [PATCH] fix searchbar color on linux --- src-tauri/tauri.conf.json | 2 +- src/styles.css | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index c6477d1..0282379 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "snotes-deck", - "version": "0.0.7" + "version": "0.0.8" }, "tauri": { "allowlist": { diff --git a/src/styles.css b/src/styles.css index 98a5715..ffa7e96 100644 --- a/src/styles.css +++ b/src/styles.css @@ -39,7 +39,7 @@ } .editor { - background-color: #41005a; + background-color: #1f1f1f; margin-left: 1em; width: 100%; height: 100%; @@ -97,6 +97,9 @@ button:active { #create-tag { margin: 0.5em; + + background-color: #252525; + color: #f6f6f6; } #create-input { @@ -224,6 +227,9 @@ button { box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); outline: none; font-size: 16px; + + background-color: #252525; + color: #f6f6f6; } #note-searchbar::placeholder {}