Skip to content

Commit

Permalink
Desktop Update
Browse files Browse the repository at this point in the history
- Improved window size responsiveness
- Improved tooltips
  • Loading branch information
flick9000 committed Jun 6, 2024
1 parent 8b9b4eb commit 08ba396
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
8 changes: 5 additions & 3 deletions winscript-app/neutralino.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,12 @@
"modes": {
"window": {
"title": "WinScript",
"minWidth": 800,
"minHeight": 600,
"width": 1200,
"height": 800,
"minWidth": 1200,
"minHeight": 800,
"maxWidth": 1920,
"maxHeight": 1080,
"center": true,
"fullScreen": false,
"alwaysOnTop": false,
Expand All @@ -46,7 +48,7 @@
"borderless": false,
"maximize": false,
"hidden": false,
"resizable": false,
"resizable": true,
"exitProcessOnClose": false
},
"browser": {
Expand Down
6 changes: 5 additions & 1 deletion winscript-app/resources/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,15 @@ body {
flex-direction: column;
justify-content: center;
align-items: center;
overflow-x: hidden;
overflow: hidden;
min-height: 90vh;
gap: 3vh;
}

.tooltip::before {
max-width: 32ch;
}

/* Header Styling */

.info-container {
Expand Down

0 comments on commit 08ba396

Please sign in to comment.