Skip to content

Commit fd7c753

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 #7460 Task: 5253888 Signed-off-by: Adrien Minne (adrm) <adrm@odoo.com>
1 parent c5c1955 commit fd7c753

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
@@ -239,7 +239,7 @@ css/* scss */ `
239239
border-radius: 4px;
240240
font-weight: 500;
241241
font-size: 14px;
242-
height: 32px;
242+
min-height: 32px;
243243
line-height: 16px;
244244
flex-grow: 1;
245245
background-color: ${BUTTON_BG};

0 commit comments

Comments
 (0)