From 11aeb1b32764ce4c8abc66131212898717c94631 Mon Sep 17 00:00:00 2001 From: lenafx Date: Tue, 9 Dec 2025 19:06:53 +0100 Subject: [PATCH] fixes --- src/api/gallery/gallery.controller.ts | 1 - views/css/components/titlebar.css | 9 +++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/api/gallery/gallery.controller.ts b/src/api/gallery/gallery.controller.ts index b1e4af0..4972e08 100644 --- a/src/api/gallery/gallery.controller.ts +++ b/src/api/gallery/gallery.controller.ts @@ -1,6 +1,5 @@ import {FastifyReply, FastifyRequest} from 'fastify'; import * as galleryService from './gallery.service'; -import {AddFavoriteBody, RemoveFavoriteParams} from '../types' export async function search(req: any, reply: FastifyReply) { try { diff --git a/views/css/components/titlebar.css b/views/css/components/titlebar.css index bd7515e..e4e48f9 100644 --- a/views/css/components/titlebar.css +++ b/views/css/components/titlebar.css @@ -20,11 +20,16 @@ html.electron { } html.electron .navbar, -html.electron .top-bar { +html.electron .top-bar, +html.electron .panel-header { top: var(--titlebar-height) !important; } -html.electron .calendar-wrapper { +html.electron .panel-content { + margin-top: 2rem; +} + +html.electron .calendar-wrapper{ margin-top: 4rem; }