Skip to content

Commit f8c7e1c

Browse files
committed
Fixed toolbar overlapping first line of text
also added electron-packager support back for easy distribution
1 parent c5922cc commit f8c7e1c

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

app/scripts/editor.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ const writePath = require("os").homedir() + '/Documents/skribo.txt';
33

44
var quill = new Quill('#editor', {
55
modules: {
6-
syntax: false
6+
syntax: false,
7+
toolbar: null
78
},
89
formats: {
910
bold: true,

app/styles/index.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ body {
3030
#titlebar {
3131
-webkit-user-select: none;
3232
-webkit-app-region: drag;
33-
height: 32px;
33+
height: 16px;
3434
padding: 0px;
3535
margin: 0px;
3636
overflow: hidden;

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"description": "skribo",
55
"main": "main.js",
66
"scripts": {
7-
"start": "electron ."
7+
"start": "electron .",
8+
"package": "electron-packager ."
89
},
910
"build": {
1011
"appId": "io.robch.skribo"

0 commit comments

Comments
 (0)