diff --git a/src/public/app/layouts/desktop_main_window_layout.js b/src/public/app/layouts/desktop_main_window_layout.js index 2f8e4bb59..4ba9cf127 100644 --- a/src/public/app/layouts/desktop_main_window_layout.js +++ b/src/public/app/layouts/desktop_main_window_layout.js @@ -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; diff --git a/src/www b/src/www index 7d3b17d82..e5195d6bd 100755 --- a/src/www +++ b/src/www @@ -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);