fix(mobile): tags editor max height (#8999)

fix AF-1873
This commit is contained in:
pengx17 2024-12-04 06:56:28 +00:00
parent 4706f1e2a3
commit 018b293f2d
No known key found for this signature in database
GPG Key ID: 23F23D9E8B3971ED

View File

@ -80,6 +80,7 @@ export const tagsEditorTagsSelector = style({
selectors: { selectors: {
[`${tagsEditorRootMobile} &`]: { [`${tagsEditorRootMobile} &`]: {
padding: 0, padding: 0,
maxHeight: 'none',
}, },
}, },
}); });
@ -110,6 +111,7 @@ export const tagSelectorTagsScrollContainer = style({
backgroundColor: cssVarV2('layer/background/primary'), backgroundColor: cssVarV2('layer/background/primary'),
gap: 0, gap: 0,
padding: 4, padding: 4,
maxHeight: 'none',
}, },
}, },
}); });