Skip to content

Commit

Permalink
feat: added correct icons and rename app
Browse files Browse the repository at this point in the history
  • Loading branch information
katungi committed Feb 20, 2024
1 parent 5b311d0 commit 7ba358b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 14 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "tauri-nextjs-template",
"name": "Pasta",
"version": "0.1.0",
"private": true,
"author": {
"name": "Your Name Here",
"email": "your-email-here@example.com"
"name": "Daniel Denis",
"email": "dankatdennis@gmail.com"
},
"scripts": {
"next-start": "cross-env BROWSER=none NODE_OPTIONS='--inspect' next dev",
Expand Down
Binary file modified src-tauri/icons/icon.icns
Binary file not shown.
14 changes: 7 additions & 7 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
"distDir": "../out"
},
"package": {
"productName": "tauri-nextjs-template",
"productName": "Pasta!",
"version": "0.1.0"
},
"tauri": {
"macOSPrivateApi": true,
"allowlist": {
"all": true,
"clipboard": {
"all": true,
"all": true,
"writeText": true,
"readText": true
}
Expand Down Expand Up @@ -65,12 +65,12 @@
"resizable": false,
"title": "Pasta",
"width": 500,
"height": 600,
"height": 300,
"transparent": true,
"alwaysOnTop": false,
"decorations": false,
"hiddenTitle": true,
"focus": false,
"alwaysOnTop": false,
"decorations": false,
"hiddenTitle": true,
"focus": false,
"visible": false
}
],
Expand Down
9 changes: 5 additions & 4 deletions src/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
@tailwind components;
@tailwind utilities;


html, body {
html,
body {
/* background: rgba(41, 41, 41, 0.92); */
height: 100%;
overflow: hidden;
Expand All @@ -14,6 +14,7 @@ html, body {
padding: 0;
box-sizing: border-box;
background: transparent;
border-radius: 50px;
}

.arrow {
Expand All @@ -22,7 +23,7 @@ html, body {
}

.arrow:before {
content: '';
content: "";
height: 0;
width: 0;
border-width: 0 8px 12px 8px;
Expand All @@ -41,4 +42,4 @@ html, body {
color: #f6f6f6;
background-color: #2f2f2f;
}
}
}

0 comments on commit 7ba358b

Please sign in to comment.