Skip to content

Commit 3ce3152

Browse files
committed
[FIX] spreadsheet: fix button height
Before this commit, the height of `o-button` elements was fixed to 32px, which is not enough for some content, for example when the text is on two lines (conditionnal formatting side panel for instance). closes #7508 Task: 5253888 X-original-commit: fd7c753 Signed-off-by: Adrien Minne (adrm) <adrm@odoo.com>
1 parent 16b2e41 commit 3ce3152

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/spreadsheet/spreadsheet.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ css/* scss */ `
245245
border-radius: 4px;
246246
font-weight: 500;
247247
font-size: 14px;
248-
height: 32px;
248+
min-height: 32px;
249249
line-height: 16px;
250250
flex-grow: 1;
251251
background-color: ${BUTTON_BG};

0 commit comments

Comments
 (0)