style tweak of sidebar headers

This commit is contained in:
zadam 2020-09-24 21:58:00 +02:00
parent 5f6dd18489
commit e2fcc6711a
2 changed files with 3 additions and 3 deletions

View File

@ -40,11 +40,11 @@ const RIGHT_PANE_CSS = `
#right-pane .card-header {
background: inherit;
padding: 3px 10px 3px 10px;
padding: 6px 10px 3px 10px;
width: 99%; /* to give minimal right margin */
background-color: var(--button-background-color);
border-color: var(--button-border-color);
border-width: 1px;
border-width: 0 0 1px 0;
border-radius: 4px;
border-style: solid;
display: flex;

View File

@ -99,7 +99,7 @@ async function startTrilium() {
}
)
httpServer.on('listening', () => log.info('Listening on port' + httpServer.address().port));
httpServer.on('listening', () => log.info('Listening on port ' + httpServer.address().port));
ws.init(httpServer, sessionParser);