Skip to content

Commit

Permalink
Turn off transparent background which doesn't really work.
Browse files Browse the repository at this point in the history
  • Loading branch information
HuakunShen committed May 7, 2024
1 parent 2b6a9f4 commit 22455f4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ tauri-build = { version = "1.5", features = [] }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.5", features = ["app-hide", "app-show", "clipboard-all", "dialog-open", "dialog-save", "fs-create-dir", "fs-remove-file", "fs-write-file", "global-shortcut-all", "macos-private-api", "notification-all", "os-all", "path-all", "shell-open", "system-tray", "updater", "window-all"] }
tauri = { version = "1.5", features = ["app-hide", "app-show", "clipboard-all", "dialog-open", "dialog-save", "fs-create-dir", "fs-remove-file", "fs-write-file", "global-shortcut-all", "notification-all", "os-all", "path-all", "shell-open", "system-tray", "updater", "window-all"] }
aws-config = "0.52.0"

tauri-plugin-stronghold = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "dev" }
Expand Down
4 changes: 1 addition & 3 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,9 @@
},
"package": {
"productName": "EzUp",
"version": "0.1.14"
"version": "0.1.15"
},
"tauri": {
"macOSPrivateApi": true,
"systemTray": {
"iconPath": "icons/icon.ico",
"iconAsTemplate": true
Expand Down Expand Up @@ -130,7 +129,6 @@
"windows": [
{
"fullscreen": false,
"transparent": true,
"height": 1000,
"width": 800,
"resizable": true,
Expand Down
2 changes: 1 addition & 1 deletion src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

body {
/* background-color: #131826; */
background-color: rgba(19, 24, 38, 0.4);
background-color: rgb(19, 24, 38);
color: white;
border-radius: 40px;
}

0 comments on commit 22455f4

Please sign in to comment.