fix(message-group): revert grid layout to use min-width (#7830)

This commit is contained in:
Konv Suu 2025-07-04 23:56:22 +08:00 committed by GitHub
parent f8c221f51a
commit ee4c4b16ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -265,7 +265,7 @@ const GridContainer = styled(Scrollbar)<{ $count: number; $gridColumns: number }
gap: 16px;
&.horizontal {
padding-bottom: 4px;
grid-template-columns: repeat(${({ $count }) => $count}, minmax(0, 1fr));
grid-template-columns: repeat(${({ $count }) => $count}, minmax(420px, 1fr));
overflow-x: auto;
}
&.fold,