This commit is contained in:
Eugene Pankov
2017-06-20 22:11:08 +02:00
parent 65e9cbe759
commit d9fd78fb42
14 changed files with 117 additions and 17 deletions

View File

@@ -145,6 +145,13 @@ ngb-tabset.vertical(type='tabs')
i.fa.fa-bug
span Open DevTools
.form-group
label Custom CSS
textarea.form-control(
[(ngModel)]='config.store.appearance.css',
'(ngModelChange)'='config.save()',
)
ngb-tab
template(ngbTabTitle)
| Hotkeys

View File

@@ -8,12 +8,17 @@
width: auto;
flex: none;
}
}
.hotkeys-table {
margin-top: 30px;
.hotkeys-table {
margin-top: 30px;
td, th {
padding: 5px 10px;
}
td, th {
padding: 5px 10px;
}
}
textarea {
font-family: 'Source Sans Mono', monospace;
height: 120px;
}