Skip to content

Commit 49e3fad

Browse files
committed
fix styles
1 parent 4d01546 commit 49e3fad

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

src-tauri/tauri.conf.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@
77
"beforeDevCommand": "bun run vite",
88
"devUrl": "http://localhost:1420",
99
"beforeBuildCommand": "bun run vite build",
10-
"frontendDist": "../dist"
10+
"frontendDist": "../dist",
11+
"features": ["desktop"]
1112
},
1213
"app": {
1314
"windows": [
1415
{
1516
"title": "ChatToMap - Export iMessage",
1617
"width": 600,
17-
"height": 700,
18+
"height": 800,
1819
"resizable": true,
1920
"minWidth": 400,
2021
"minHeight": 500,

src/styles.css

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,18 @@ main {
126126
.icon {
127127
font-size: 48px;
128128
text-align: center;
129-
margin-bottom: 8px;
129+
margin-bottom: 0;
130+
}
131+
132+
/* Error screen */
133+
#error-screen {
134+
align-items: center;
135+
text-align: center;
136+
gap: 8px;
137+
}
138+
139+
#retry-btn {
140+
margin-top: 20px;
130141
}
131142

132143
/* Permission screen styles */

0 commit comments

Comments
 (0)