From fdaba924a13468954dfe98a557269e425e883203 Mon Sep 17 00:00:00 2001 From: ArneBo Date: Mon, 30 Dec 2024 12:54:10 +0100 Subject: [PATCH] fix(ui): [WIP] Link button width --- front/src/composables/widths.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/composables/widths.ts b/front/src/composables/widths.ts index 3d3431cfe..16e6b92da 100644 --- a/front/src/composables/widths.ts +++ b/front/src/composables/widths.ts @@ -14,7 +14,7 @@ export type Key = KeysOfUnion const styles = { minContent: 'width: min-content;', tiny: "width: 124px; grid-column: span 2;", - buttonWidth: "width: 136px; grid-column: span 2; flex-grow:0;", + buttonWidth: "width: 136px; grid-column: span 2; flex-grow: 0; align-self: start;", small: "width: 202px; grid-column: span 3;", medium: "width: 280px; grid-column: span 4;", auto: "width: auto;",