Skip to content

Commit

Permalink
Fixed toolbar overlapping first line of text
Browse files Browse the repository at this point in the history
also added electron-packager support back for easy distribution
  • Loading branch information
RobethX committed Nov 17, 2018
1 parent c5922cc commit f8c7e1c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion app/scripts/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ const writePath = require("os").homedir() + '/Documents/skribo.txt';

var quill = new Quill('#editor', {
modules: {
syntax: false
syntax: false,
toolbar: null
},
formats: {
bold: true,
Expand Down
2 changes: 1 addition & 1 deletion app/styles/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ body {
#titlebar {
-webkit-user-select: none;
-webkit-app-region: drag;
height: 32px;
height: 16px;
padding: 0px;
margin: 0px;
overflow: hidden;
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"description": "skribo",
"main": "main.js",
"scripts": {
"start": "electron ."
"start": "electron .",
"package": "electron-packager ."
},
"build": {
"appId": "io.robch.skribo"
Expand Down

0 comments on commit f8c7e1c

Please sign in to comment.