From 8eeeb3f8f851450958e7b92ce06e82b640d5a396 Mon Sep 17 00:00:00 2001 From: upsiflu Date: Mon, 20 Jan 2025 19:17:28 +0200 Subject: [PATCH] fix(ui): set header spacing according to designs (24px/68px) --- front/src/components/ui/Header.vue | 9 ++------- front/src/components/ui/Layout.vue | 2 +- front/ui-docs/components/ui/layout/header.md | 8 ++++++++ 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/front/src/components/ui/Header.vue b/front/src/components/ui/Header.vue index 617e8e83a..84be1ae82 100644 --- a/front/src/components/ui/Header.vue +++ b/front/src/components/ui/Header.vue @@ -21,16 +21,11 @@ const heading = : props.h2 ? ({ h2: props.h2 }) as const : ({ h3: props.h3 }) as const -console.log("HEADING", heading) - -const numberOfColumnsPerItem = - 'noItems' in props && props.noItems ? 1 : 'tinyItems' in props && props.tinyItems ? 2 : 'smallItems' in props && props['smallItems'] ? 3 : 4 - const { style, ...fallthroughProps } = useAttrs()