M index.html => index.html +1 -1
@@ 3,7 3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
- <title>A noticable note editor</title>
+ <title>noticable - A bad note app</title>
<meta name="description" content="" />
<link rel="stylesheet" href="node_modules/github-markdown-css/github-markdown.css" />
<link rel="stylesheet" href="style.css" />
M renderer.js => renderer.js +2 -1
@@ 11,7 11,8 @@ require(['vs/editor/editor.main'], function () {
minimap: {
enabled: false
},
- value: ''
+ value: '',
+ wordWrap: 'on',
});
});
M style.css => style.css +2 -1
@@ 10,6 10,7 @@ body {
left: 0;
background-color: black;
overflow-x: hidden;
+ font-family: "-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji";
}
.sidebar p {
color: white;
@@ 69,7 70,7 @@ ul#list-filenames li.highlight {
display: block;
}
.container {
- max-width: 1000px;
+ width: calc(100% - 200px);
height: 100%;
margin-left: 200px;
transition: all 0.4s ease-out;